import { BaseRunner } from './runner';
import type { TestCollection } from 'testplane';
export declare class AllTestRunner extends BaseRunner {
    run<U>(runHandler: (testCollection: TestCollection) => U): U;
}
