export declare type StudentVerbose = { /** * The unique identifier of the student */ uid: number; /** * The name of the student */ name: string; /** * The class number of the student at high school */ class_number: number; /** * The year when the student graduates from high school */ grad_year: number; };