export declare const CookieAttributesGeneral: CookieAttributes; export interface CookieAttributes { path?: string; domain?: string; expires?: number | Date; sameSite?: "strict" | "Strict" | "lax" | "Lax" | "none" | "None"; secure?: boolean; [property: string]: any; }