import { ConfigService } from "./config.service";
import * as i0 from "@angular/core";
export declare class LocalStorageService {
    private configService;
    private readonly storagePrefix;
    constructor(configService: ConfigService);
    getItem(lsKey: string): any;
    getItems(searchString: string): any[];
    setItem(lsKey: string, lsValue: any): void;
    removeItem(lsKey: string): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<LocalStorageService, never>;
    static ɵprov: i0.ɵɵInjectableDeclaration<LocalStorageService>;
}
