import ProjectFileSystem from './ProjectFileSystem'; export type Properties = { [name: string]: string; }; export default class PropertyFile { fs: ProjectFileSystem; path: string; properties: Properties; constructor(fs: ProjectFileSystem, path: string); load(): Promise; private unescape; }