import { SerializedEthereumRpcError } from '../error/utils'; export type RPCResponse = { result: { value: unknown; } | { error: SerializedEthereumRpcError; }; data: { chainId: number; }; }; //# sourceMappingURL=RPCResponse.d.ts.map