import * as z from 'zod/mini'; /** JSON-RPC error object schema. */ export declare const ErrorObject: z.ZodMiniObject<{ code: z.ZodMiniNumber; message: z.ZodMiniString; data: z.ZodMiniOptional; }, z.core.$strip>; /** JSON-RPC response schema. */ export declare const RpcResponse: z.ZodMiniUnion; id: z.ZodMiniNumber; jsonrpc: z.ZodMiniLiteral<"2.0">; }, z.core.$strip>, z.ZodMiniObject<{ error: z.ZodMiniObject<{ code: z.ZodMiniNumber; message: z.ZodMiniString; data: z.ZodMiniOptional; }, z.core.$strip>; result: z.ZodMiniOptional; id: z.ZodMiniNumber; jsonrpc: z.ZodMiniLiteral<"2.0">; }, z.core.$strip>]>; //# sourceMappingURL=RpcResponse.d.ts.map