export declare class CookieComponent { /** * Returns the cookie with the given name, or undefined if not found * * @param {string} name - cookie name * @returns string | null */ static get(name: string): string | undefined; /** * Please note that a cookie value is encoded, * so getCookie uses a built-in decodeURIComponent function to decode it. * * @param {string} name - cookie name * @param {string | number | boolean} value - cookie value * @param {any} cookieOptions - cookie options * @returns void */ static set(name: string, value: string | number | boolean, cookieOptions: any): void; /** * To delete a cookie, we can call it with a negative expiration date * * @param {string} name */ static delete(name: string): void; }