import { AWCache } from 'appworks-js'; export declare class AWCacheService { AWCache: AWCache; constructor(); init(option?: any): void; setItem(key: string, value: any): Promise; getItem(key: string): any; removeItem(key: string): Promise; clear(): Promise; }