import { PropertiesStorageInterface } from "../interfaces/propertiesStorageInterface"; export declare class PropertiesStorage implements PropertiesStorageInterface { protected propertiesMap: any; protected propertiesFilePath: any; getProperty(key: string, defaultValue?: any): any; setProperty(key: string, value: any): void; protected loadProperties(): void; protected saveProperties(): void; }