import { TIntStorageType } from "../../types"; import * as i0 from "@angular/core"; export declare class IntStorageService { private storageType; private readonly windowRef; constructor(storageType: TIntStorageType, windowRef: Window); setStorageTypeHandle(storageType: TIntStorageType): void; set(key: string, value: unknown): void; get(key: string): string | null; has(key: string): boolean; getWithParse(key: string): T | null; clear(key: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }