import type { TestCollection } from 'testplane';
import type { TestRunner } from './runner';
import type { TestSpec } from '../../types';
export declare const createTestRunner: (collection: TestCollection, tests: TestSpec[]) => TestRunner;
