/** * Interface for cookie options */ interface CookieOptions { maxAge?: number; path?: string; domain?: string; secure?: boolean; sameSite?: 'strict' | 'lax' | 'none'; } /** * Sets a session cookie in the browser * @param name - The name of the cookie * @param value - The value to store in the cookie * @param options - Optional configuration parameters * @returns void */ export declare function setSessionCookie(name: string, value: string, options?: CookieOptions): void; /** * Gets a cookie value by name * @param name - The name of the cookie to retrieve * @returns The cookie value if found, null otherwise */ export declare function getSessionCookie(name: string): string | null; export declare const sessionCookie: Storage; export {};