declare class ConnectionService {
    private readonly api;
    private readonly client?;
    constructor(api: any, client?: any | undefined);
    /**
     * Verifica se o cliente pode executar operações
     * @param throwError Se true, lança um erro caso as credenciais não sejam válidas (padrão: true)
     */
    checkCredentials(throwError?: boolean): void;
    /**
     * Lista todas as conexões
     */
    listConnections(): Promise<any[]>;
    /**
     * Obtém uma conexão específica
     */
    getConnection(channelToken: string): Promise<any | null>;
}
