export type PlaywrightProject = { name: string; use: any; testMatch: string[] | string | undefined; testIgnore: string[] | string | undefined; testDir: string | undefined; teardown: string | undefined; }; export declare function findSubDirs(dir: string, subDirs?: string[], rootDir?: string): void; export declare function getTempTestFileLocation(selectedProject: PlaywrightProject, repoDir: string): string | undefined; export declare function createTempTestFile(port: number, repoDir: string, tempFileRelativePath: string, testName: string): Promise; export declare function deleteTempTestFile(repoDir: string, tempFileRelativePath: string): Promise; //# sourceMappingURL=temp-files.d.ts.map