import * as z from "zod/v3";
import { ClosedEnum } 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 = ClosedEnum<typeof BatchJobStatus>;
/** @internal */
export declare const BatchJobStatus$inboundSchema: z.ZodNativeEnum<typeof BatchJobStatus>;
/** @internal */
export declare const BatchJobStatus$outboundSchema: z.ZodNativeEnum<typeof BatchJobStatus>;
//# sourceMappingURL=batchjobstatus.d.ts.map