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<void> the promise object.
     */
    static electronResponse(rpc: Rpc, data: RpcElectronOperationResult): Promise<void>;
    static electronResponse(rpc: Rpc, data: RpcElectronOperationResult, outbound?: RpcOutbound): Promise<void>;
}
