export type CookieOption = { httpOnly?: boolean; secure?: boolean; sameSite?: 'Lax' | 'Strict' | 'None'; priority?: 'low' | 'medium' | 'high'; maxAge?: number; domain?: string; expires?: Date; }; export type AuthOptionsCookie = { options: CookieOption; prefix: '__Secure-' | '__Host-' | 'auth.'; }; export type RedirectOptions = { login?: string; logout: string; twoFactor?: string; callback?: string; home?: string; };