import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BatchJob } from "./batchjob.js"; export type ListBatchJobsResponse = { data?: Array | undefined; object: "list"; total: number; }; /** @internal */ export declare const ListBatchJobsResponse$inboundSchema: z.ZodType; export declare function listBatchJobsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listbatchjobsresponse.d.ts.map