import { NodeClientOptions, NodeServiceClient } from "./client";
import { ClientRequestInterface } from "@selfage/service_descriptor/client_request_interface";
export declare class NodeServiceClientMock extends NodeServiceClient {
    request: ClientRequestInterface<any>;
    error: Error;
    response: any;
    constructor();
    send(request: ClientRequestInterface<any>, options?: NodeClientOptions): Promise<any>;
}
