import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * The status of the job. */ export declare const JobStatus: { readonly Draft: "draft"; readonly Internal: "internal"; readonly Published: "published"; readonly Completed: "completed"; readonly OnHold: "on-hold"; readonly Private: "private"; }; /** * The status of the job. */ export type JobStatus = ClosedEnum; /** @internal */ export declare const JobStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const JobStatus$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace JobStatus$ { /** @deprecated use `JobStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Draft: "draft"; readonly Internal: "internal"; readonly Published: "published"; readonly Completed: "completed"; readonly OnHold: "on-hold"; readonly Private: "private"; }>; /** @deprecated use `JobStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Draft: "draft"; readonly Internal: "internal"; readonly Published: "published"; readonly Completed: "completed"; readonly OnHold: "on-hold"; readonly Private: "private"; }>; } //# sourceMappingURL=jobstatus.d.ts.map