import { Observable } from 'rxjs'; import { Rpc } from '../rpc'; import { RpcObservableClient } from '../rpc-observable-client'; import { RpcOutbound } from '../rpc-outbound'; import { RpcObservablePerformanceError, RpcObservablePerformanceRequest, RpcObservablePerformanceResult } from './rpc-observable-performance-model'; export declare class RpcObservablePerformanceClient extends RpcObservableClient { /** * Initializes a new instance of the RpcObservablePerformanceClient class. * * @param rpc the rpc object. */ constructor(rpc: Rpc); /** * The Performance command. * * @param request the Rpc Performance data object. * @param outbound the Rpc outbound channel object. * @return Observable the observable object. */ log(request: RpcObservablePerformanceRequest, outbound?: RpcOutbound): Observable; }