export interface User { _id: string; email: string; name: string; isVerified: boolean; createdAt: string; updatedAt: string; } export interface LoginCredentials { email: string; password: string; } export interface RegisterCredentials { email: string; password: string; name: string; } export interface AuthResponse { user: User; token: string; }