import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * Unit of measurement for employee compensation. */ export declare const PaymentUnit: { readonly Hour: "hour"; readonly Week: "week"; readonly Month: "month"; readonly Year: "year"; readonly Paycheck: "paycheck"; readonly Other: "other"; }; /** * Unit of measurement for employee compensation. */ export type PaymentUnit = ClosedEnum; /** @internal */ export declare const PaymentUnit$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PaymentUnit$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 PaymentUnit$ { /** @deprecated use `PaymentUnit$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Hour: "hour"; readonly Week: "week"; readonly Month: "month"; readonly Year: "year"; readonly Paycheck: "paycheck"; readonly Other: "other"; }>; /** @deprecated use `PaymentUnit$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Hour: "hour"; readonly Week: "week"; readonly Month: "month"; readonly Year: "year"; readonly Paycheck: "paycheck"; readonly Other: "other"; }>; } //# sourceMappingURL=paymentunit.d.ts.map