import type { LocalStorageService } from './types'; export declare class LocalStorageServiceImplement implements LocalStorageService { getAllKeys(): Promise; getItem(key: string): Promise; setItem(key: string, value: string): Promise; removeItem(key: string): Promise; } //# sourceMappingURL=LocalStorageService.d.ts.map