/**
 * 获取 cookie
 * @returns
 */
declare function getCookie(key: string): string | undefined;
/**
 * 设置 cookie
 * @returns
 */
declare function setCookie(key: string, data: any): string | undefined;
/**
 * 移除 cookie
 */
declare function removeCookie(key: string): void;

export { getCookie, removeCookie, setCookie };
