import { Rpc } from '../rpc'; import { RpcOutbound } from '../rpc-outbound'; import { RpcAzureOperationResult } from './rpc-azure-model'; export declare class RpcAzureResponseClient { /** * The Rpc Azure 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 azureResponse(rpc: Rpc, data: RpcAzureOperationResult): Promise; static azureResponse(rpc: Rpc, data: RpcAzureOperationResult, outbound?: RpcOutbound): Promise; }