import { IStorageService } from '../models/IStorageService'; export declare class MemoryStorageService implements IStorageService { private store; get(key: string): string | null; set(key: string, value: string): void; remove(key: string): void; } //# sourceMappingURL=MemoryStorageService.d.ts.map