import { EthMethod } from './eth'; import { Web3Method } from './web3'; import { TestMethod } from './test'; import { SubscriptionMethod } from './subscriptions'; export declare type RpcMethod = EthMethod | Web3Method | TestMethod | SubscriptionMethod; export declare type RpcRequest = RpcMethod['request']; export declare type RpcResponse = RpcMethod['response']; export * from './eth'; export * from './web3'; export * from './test'; export * from './subscriptions';