export type StudentUser = { UserID: string; forename: string; surname: string; email: string; created: Date; referral: string; }; export type InstituteStudentUser = { UserID: string; forename: string; surname: string; email: string; created: Date; activated: Date; cohortID: string; }; export type InstituteStaffUser = { UserID: string; forename: string; surname: string; email: string; created: Date; activated: Date; }; export type ProviderUser = { UserID: string; };