import { SuiteShape, TestShape } from '@seleniumhq/side-model'; import { Configuration, Project } from './types'; export interface HoistedThings { configuration: Configuration; logger: Console; } declare const buildRunners: ({ configuration, logger }: HoistedThings) => { all: (projects: Project[]) => Promise; project: (project: Project) => Promise; suite: (project: Project, suite: SuiteShape) => Promise; test: (project: Project, test: TestShape) => Promise; }; export default buildRunners; //# sourceMappingURL=run.d.ts.map