declare function setCookie(name: string, value: string, domain?: string): void;
declare function getCookie(name: string): string | null;
declare function deleteCookie(name: string, domain?: string): void;
declare function checkCookie(name: string): boolean;
declare function updateCookie(name: string, value: string, domain?: string): void;
declare const _default: {
    setCookie: typeof setCookie;
    getCookie: typeof getCookie;
    deleteCookie: typeof deleteCookie;
    checkCookie: typeof checkCookie;
    updateCookie: typeof updateCookie;
};
export default _default;
