import { TestFile } from "./test-file.interface"; import { PropertyMap, PropertySource, Type } from "@sakuli/commons"; export declare class Project implements PropertyMap { readonly rootDir: string; private cascadingMap; private propertyMap; private _testFiles; private _installedMaps; get testFiles(): TestFile[]; constructor(rootDir: string); addTestFile(testFile: TestFile): void; installPropertySource(source: PropertySource): Promise; get(key: string): any; has(key: string): boolean; objectFactory(type: Type): T; get installedMaps(): number; } //# sourceMappingURL=project.class.d.ts.map