import type User from "./user.interface"; export interface AuthContextType { user: User | null; update: () => void; }