import { TestExpectAdapter } from './expect'; import { TestFunctionsAdapter } from './functions'; export declare class TestAdapter { functions: TestFunctionsAdapter; expect: TestExpectAdapter; getCustomProps(): Promise; /** Should return */ run(_filesToRun: string[], _globalSetupFunctionBody: string, _std: { join: (...args: string[]) => Promise; writeFile: (path: string | string[], content: string) => Promise; removeFile: (path: string | string[]) => Promise; mkdir: (path: string | string[]) => Promise; }): Promise; } //# sourceMappingURL=index.d.ts.map