import { StoreType } from '../utils'; import * as i0 from "@angular/core"; export declare class StoreService { storeType: StoreType; store: Storage; use(storeType: StoreType): this; set(key: string, value: string): void; get(key: string, defaultValue?: string): string | undefined; has(key: string): boolean; remove(key: string): void; clear(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }