export declare class LocalStorageService {
    set(key: string, value: any, ttl?: number | null): void;
    get<T>(key: string): any;
    remove(key: string): void;
    clear(): void;
    getWithPrefix(key: string): any;
}
export declare const LS: LocalStorageService;
