/** * Enum for job interest state. */ declare const JobInterestState: { readonly OPEN: "OPEN"; readonly SHORTLISTED: "SHORTLISTED"; readonly WITHDRAWN: "WITHDRAWN"; readonly SELECTED: "SELECTED"; readonly REJECTED: "REJECTED"; readonly LISTING_CANCELLED: "LISTING_CANCELLED"; }; type JobInterestState = (typeof JobInterestState)[keyof typeof JobInterestState]; export { JobInterestState };