import playwright from 'playwright-core'; import webpack from 'webpack'; export interface IRunTestsOptions { preferredPort?: number | undefined; launchOptions?: playwright.LaunchOptions | undefined; browserContextOptions?: playwright.BrowserContextOptions | undefined; webpackConfig?: webpack.Configuration | undefined; keepOpen?: boolean | undefined; colors?: boolean | undefined; reporter?: string | undefined; ui?: string | undefined; timeout?: number | undefined; grep?: string; iterate?: number; } export declare function runTests(testFiles: string[], options?: IRunTestsOptions): Promise; //# sourceMappingURL=run-tests.d.ts.map