import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * The employment status of the employee, indicating whether they are currently employed, inactive, terminated, or in another status. */ export declare const EmploymentStatus: { readonly Active: "active"; readonly Inactive: "inactive"; readonly Terminated: "terminated"; readonly Other: "other"; }; /** * The employment status of the employee, indicating whether they are currently employed, inactive, terminated, or in another status. */ export type EmploymentStatus = ClosedEnum; /** @internal */ export declare const EmploymentStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EmploymentStatus$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 EmploymentStatus$ { /** @deprecated use `EmploymentStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Active: "active"; readonly Inactive: "inactive"; readonly Terminated: "terminated"; readonly Other: "other"; }>; /** @deprecated use `EmploymentStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Active: "active"; readonly Inactive: "inactive"; readonly Terminated: "terminated"; readonly Other: "other"; }>; } //# sourceMappingURL=employmentstatus.d.ts.map