export interface Profile { fullName: string; group?: string; faculty?: string; studentId?: string; email?: string; raw: Record; } export interface ApiResponse { data: T; } export interface ApiError { error: string; message: string; }