import { BaseRunner } from './runner';
import type { TestSpec } from '../../types';
import type { TestCollection } from 'testplane';
export declare class SpecificTestRunner extends BaseRunner {
    private _tests;
    constructor(collection: TestCollection, tests: TestSpec[]);
    run<U>(runHandler: (testCollection: TestCollection) => U): U;
    private _filter;
}
