import { DefineRpcMethod, RpcRequest, RpcResponse } from '../rpc'; interface GetInfoResponseBody { version: string; supportedMethods?: string[]; } export type GetInfoRequest = RpcRequest<'getInfo'>; export type GetInfoResponse = RpcResponse; export type DefineGetInfoMethod = DefineRpcMethod; export {}; //# sourceMappingURL=get-info.d.ts.map