import { PlatformService } from '../services/platform.services'; export declare class StorageService { platformService: PlatformService; constructor(platformService: PlatformService); set(name: string, data: any): void; get(name: string): string; remove(name: string): void; valueExist(name: string): boolean; }