export declare const writeCookie: <T>(tag: string, value: T, expire?: string, httpOnly?: string, path?: string) => void;
export declare const readCookie: <T>(tag: string) => T | undefined;
export declare const deleteCookie: (tag: string) => void;
