import { Dictionary, StorageParameter } from "types"; export default class CookieAPI { config: StorageParameter; constructor(conf?: Dictionary); set(key: string, value: any, expire?: number): void; get(key: string): any; remove(key: string): void; clear(): void; _write(key: string, value: any, expire?: number, path?: string): void; _read(key: string): any; _clearAll(): void; }