export declare class RpcClient { static readonly DEFAULT_SCHEME = "http"; static readonly DEFAULT_HOST = "localhost:8545"; static readonly DEFAULT_PATH = "/"; static readonly DEFAULT_VERSION = "2.0"; private apiClient; private id; private version; constructor(scheme?: string, host?: string, path?: string, version?: string); call(method: string, params: any[]): Promise; } //# sourceMappingURL=rpc-client.d.ts.map