export interface IStorageService { get(key: string): string | null; set(key: string, value: string): void; remove(key: string): void; } //# sourceMappingURL=IStorageService.d.ts.map