/** * * `ACTIVE` - ACTIVE * * `PENDING` - PENDING * * `INACTIVE` - INACTIVE */ export declare const EmploymentStatusEnum: { readonly Active: "ACTIVE"; readonly Pending: "PENDING"; readonly Inactive: "INACTIVE"; }; export type EmploymentStatusEnum = (typeof EmploymentStatusEnum)[keyof typeof EmploymentStatusEnum];