import * as z from "zod/v4"; import { OpenEnum } from "../../types/enums.js"; export declare const BatchJobStatus: { readonly Queued: "QUEUED"; readonly Running: "RUNNING"; readonly Success: "SUCCESS"; readonly Failed: "FAILED"; readonly TimeoutExceeded: "TIMEOUT_EXCEEDED"; readonly CancellationRequested: "CANCELLATION_REQUESTED"; readonly Cancelled: "CANCELLED"; }; export type BatchJobStatus = OpenEnum; /** @internal */ export declare const BatchJobStatus$inboundSchema: z.ZodType; /** @internal */ export declare const BatchJobStatus$outboundSchema: z.ZodType; //# sourceMappingURL=batchjobstatus.d.ts.map