import { Rpc } from '../rpc'; import { RpcOutbound } from '../rpc-outbound'; import { RpcElectronOperationResult } from './rpc-electron-model'; export declare class RpcElectronResponseClient { /** * The Rpc Electron response command. * * @param rpc the rpc service. * @param data the azure operation result object. * @param outbound the outbound channel to call. @optional * @return Promise the promise object. */ static electronResponse(rpc: Rpc, data: RpcElectronOperationResult): Promise; static electronResponse(rpc: Rpc, data: RpcElectronOperationResult, outbound?: RpcOutbound): Promise; }