import { MixedObject } from '../types'; export declare class CookieService { static noCookieMode: boolean; static get(name: string): string | null; static set(name: string, value: string | number | boolean, options?: MixedObject): void; static delete(name: string): void; }