import * as z from "zod/v4"; export type BatchRequest = { customId?: string | null | undefined; body: { [k: string]: any; }; }; /** @internal */ export type BatchRequest$Outbound = { custom_id?: string | null | undefined; body: { [k: string]: any; }; }; /** @internal */ export declare const BatchRequest$outboundSchema: z.ZodType; export declare function batchRequestToJSON(batchRequest: BatchRequest): string; //# sourceMappingURL=batchrequest.d.ts.map