import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListBatchesRequest = { after?: string | undefined; limit?: number | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const ListBatchesRequest$inboundSchema: z.ZodType; /** @internal */ export type ListBatchesRequest$Outbound = { after?: string | undefined; limit: number; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListBatchesRequest$outboundSchema: z.ZodType; export declare function listBatchesRequestToJSON(listBatchesRequest: ListBatchesRequest): string; export declare function listBatchesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listbatches.d.ts.map