export declare const fieldsOfStudy: string[]; export interface FieldOfStudy { readonly id: string; readonly name: string; } export declare function toFieldOfStudy(name: string): FieldOfStudy;