import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * Frequency of employee compensation. */ export declare const PaymentFrequency: { readonly Weekly: "weekly"; readonly Biweekly: "biweekly"; readonly Monthly: "monthly"; readonly ProRata: "pro-rata"; readonly Other: "other"; }; /** * Frequency of employee compensation. */ export type PaymentFrequency = ClosedEnum; /** @internal */ export declare const PaymentFrequency$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PaymentFrequency$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 PaymentFrequency$ { /** @deprecated use `PaymentFrequency$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Weekly: "weekly"; readonly Biweekly: "biweekly"; readonly Monthly: "monthly"; readonly ProRata: "pro-rata"; readonly Other: "other"; }>; /** @deprecated use `PaymentFrequency$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Weekly: "weekly"; readonly Biweekly: "biweekly"; readonly Monthly: "monthly"; readonly ProRata: "pro-rata"; readonly Other: "other"; }>; } //# sourceMappingURL=paymentfrequency.d.ts.map