export declare const setCookie: (name: string, value: string, days?: number, withSubDomain?: boolean) => void;
export declare const getCookie: (name: string, { cookie }?: {
[k: string]: string;
}) => string | null;
export declare const deleteCookie: (name: string) => void;