export default class Persist { protected persist: any; constructor(dir: any); init(): Promise; getItem(key: any): Promise; setItem(key: any, value: any): Promise; cacheForever(key: any, callable: any): Promise; cache(key: any, ttl: any, callable: any): Promise; setWithExpiry(key: any, value: any, ttl: any): Promise; getWithExpiry(key: any): Promise; } //# sourceMappingURL=Persist.d.ts.map