/** * * `MEDICAL` - MEDICAL * * `HEALTH_SAVINGS` - HEALTH_SAVINGS * * `INSURANCE` - INSURANCE * * `RETIREMENT` - RETIREMENT * * `OTHER` - OTHER */ export declare const BenefitPlanTypeEnum: { readonly Medical: "MEDICAL"; readonly HealthSavings: "HEALTH_SAVINGS"; readonly Insurance: "INSURANCE"; readonly Retirement: "RETIREMENT"; readonly Other: "OTHER"; }; export type BenefitPlanTypeEnum = (typeof BenefitPlanTypeEnum)[keyof typeof BenefitPlanTypeEnum];