import { Store } from "./store"; export declare class CookiesStore implements Store { private attributes; private readonly domain?; constructor(domain?: string); static isAvailable(): boolean; get(key: string): T | null; set(key: string, value: T): T | null; remove(key: string): void; private getAttributes; private setAttributes; private getDomainAttribute; }