/** * @file * @author Auth0 https://github.com/auth0/auth0.js * @license MIT */ /** * A storage mechanism that uses cookies to store data. */ export default class CookieStorage { getItem(key: string): string | undefined; removeItem(key: string): void; setItem(key: string, value: string, options?: Cookies.CookieAttributes): void; }