import * as z from "zod/v3";
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<BatchRequest$Outbound, z.ZodTypeDef, BatchRequest>;
export declare function batchRequestToJSON(batchRequest: BatchRequest): string;
//# sourceMappingURL=batchrequest.d.ts.map