/** Enumerates the possible pay types that a job can be assigned. */ export declare const JobAssignmentPayType: { readonly None: "NONE"; readonly Hourly: "HOURLY"; readonly Salary: "SALARY"; }; export type JobAssignmentPayType = (typeof JobAssignmentPayType)[keyof typeof JobAssignmentPayType];