export interface UserData { name: string; institution: string; sscRoll: string; hscRoll: string; email: string; phone: string; } export interface RegisterForm { full_name: string; username: string; email: string; password: string; phone_number: string; ssc_roll: number; ssc_board: string; hsc_roll: number; hsc_board: string; college: string; preparation_unit: "Science" | "Arts" | "Commerce" | string; } export interface LoginForm { identifier: string; password: string; }