interface Iconfig {
    exdays?: number;
    hours?: number;
}
/**
 * 设置cookie
 */
export declare const setCookie: (cname: string, cvalue: any, config?: Iconfig | undefined) => void;
/**
 * 获取cookie
 */
export declare const getCookie: (cname: string) => string;
/**
 * 清空所有cookie
 */
export declare const clearAllCookie: () => void;
export {};
