export declare class Properties { private filePath; private props; constructor(filePath: string); load(): Promise; get(key: string, defaultValue?: string): string | undefined; set(key: string, value: string): void; has(key: string): boolean; save(): Promise; entries(): [string, string][]; }