import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BatchObject, BatchObject$Outbound } from "./batchobject.js"; export type ListBatchesResponse = { object: "list"; data: Array; firstId?: string | undefined; lastId?: string | undefined; hasMore: boolean; }; /** @internal */ export declare const ListBatchesResponse$inboundSchema: z.ZodType; /** @internal */ export type ListBatchesResponse$Outbound = { object: "list"; data: Array; first_id?: string | undefined; last_id?: string | undefined; has_more: boolean; }; /** @internal */ export declare const ListBatchesResponse$outboundSchema: z.ZodType; export declare function listBatchesResponseToJSON(listBatchesResponse: ListBatchesResponse): string; export declare function listBatchesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listbatchesresponse.d.ts.map