import { Observable } from 'rxjs'; import { Rpc } from '../rpc'; import { RpcObservableClient } from '../rpc-observable-client'; import { RpcOutbound } from '../rpc-outbound'; import { RpcObservableCopilotError, RpcObservableCopilotRequest, RpcObservableCopilotResult } from './rpc-observable-copilot-model'; /** * Iframe to Shell pair, the sending/Iframe port. */ export declare class RpcObservableCopilotClient extends RpcObservableClient { /** * Initializes a new instance of the RpcObservableCopilotClient class. * * @param rpc the rpc object. */ constructor(rpc: Rpc); /** * The Copilot command. * * @param request the Rpc Copilot data object. * @param outbound the Rpc outbound channel object. * @return Observable the observable object. */ log(request: RpcObservableCopilotRequest, outbound?: RpcOutbound): Observable; }