import { TObject } from "./dtypes"; export declare namespace dcookies { function set(key: string, value: TObject): void; function get(key: string): TObject | undefined; function remove(key: string): void; }