export declare const JOB_STATUS: readonly ["STUDYING", "WORKING", "WORKING_RETIRED", "RETIRED_PROGRESSIVE", "RETIRED", "RETIRED_WORKING", "UNEMPLOYED"]; export declare type JobStatus = typeof JOB_STATUS[number]; export declare const EDUCATION: readonly ["SECONDARY", "UNIVERSITY", "COLLEGE", "DEP"]; export declare type Education = typeof EDUCATION[number]; export declare const SALARY: number[]; export declare type Salary = typeof SALARY[number];