import * as puppeteer from 'puppeteer-core'; export interface TestFileOptions { ignore: string[]; extension: string[]; file: string[]; recursive: boolean; sort: boolean; spec: string[]; } export interface TestPageOptions { files?: Partial; newPage: () => Promise; matchAppUrl?: (url: string) => boolean; onWillRun?: () => Promise; onDidRun?: (failures: number) => Promise; } export default function newTestPage(options: TestPageOptions): Promise; //# sourceMappingURL=test-page.d.ts.map