/** * * `SALARY` - SALARY * * `REIMBURSEMENT` - REIMBURSEMENT * * `OVERTIME` - OVERTIME * * `BONUS` - BONUS */ export declare const EarningTypeEnum: { readonly Salary: "SALARY"; readonly Reimbursement: "REIMBURSEMENT"; readonly Overtime: "OVERTIME"; readonly Bonus: "BONUS"; }; export type EarningTypeEnum = (typeof EarningTypeEnum)[keyof typeof EarningTypeEnum];