import type { AbstractSecurityStorage } from "./abstract-security-storage";
export declare class DefaultLocalStorageService implements AbstractSecurityStorage {
    read(key: string): string | null;
    write(key: string, value: string): void;
    remove(key: string): void;
    clear(): void;
}
//# sourceMappingURL=default-localstorage.service.d.ts.map