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