import { AuthenticationConfiguration } from '../types'; export declare const getCookieValue: (name: string) => string | null; export declare const setCookieValue: (name: string, value: string) => void; export declare const logout: () => void; export declare const refreshAccessToken: (authConfig?: AuthenticationConfiguration) => Promise;