export declare type OccupationType = 'academic' | 'business'; export declare const academicOccupations: string[]; export declare const businessOccupations: string[]; export interface AcademicOccupation { readonly id: string; readonly type: 'academic'; readonly name: string; } export interface BusinessOccupation { readonly id: string; readonly type: 'business'; readonly name: string; } export declare type Occupation = AcademicOccupation | BusinessOccupation; export declare class Occupations { static academicFromName(name: string): AcademicOccupation; static businessFromName(name: string): BusinessOccupation; }