import { BaseFeatureForProject } from 'tnp-helpers'; import { Project } from '../../../../../../project/abstract/project'; export declare abstract class BaseTestRunner extends BaseFeatureForProject { abstract start(files: string[], debug: boolean): Promise; abstract startAndWatch(files: string[], debug: boolean): Promise; abstract fileCommand(files: string[]): string; run(baseFolderForCode: string, command: string): Promise; getCommonFilePattern(where: 'src' | 'e2e' | 'src/tests', files?: string[], extensions?: string[]): string; }