type AnyJSON = any; export declare function getItem(key: string): AnyJSON; export declare function setItem(key: string, value: AnyJSON): void; export declare function removeItem(key: string): void; export {};