export declare class LocalSession { static set(name: string, value: any): void; private static setCookie; static get(name: string): any; static check(name: string): boolean; private static getCookie; private static checkCookie; static remove(name: string): void; static clear(): void; private static deleteAllCookies; private static deleteCookie; }