type ServerResponse = import('http').ServerResponse; type IncomingMessage = import('http').IncomingMessage; type DescribeFunction = ((name: string, inner: () => void) => void) & {fail(condition: boolean): DescribeFunction}; type ItFunction = ((name: string, inner: (state: STATE) => Promise) => void) & { fail(condition: boolean): ItFunction; skip(condition: boolean): ItFunction; slow(): ItFunction; repeat(n: number): ItFunction; }; interface WorkerState { } interface FixtureState { } declare module '' { module 'expect/build/types' { interface Matchers { toMatchImage(path: string): R; } } } declare const expect: typeof import('expect'); declare const describe: DescribeFunction; declare const fdescribe: DescribeFunction; declare const xdescribe: DescribeFunction; declare const it: ItFunction; declare const fit: ItFunction; declare const dit: ItFunction; declare const xit: ItFunction; declare const beforeEach: (inner: (state: FixtureState & WorkerState) => Promise) => void; declare const afterEach: (inner: (state: FixtureState & WorkerState) => Promise) => void; declare const beforeAll: (inner: (state: WorkerState) => Promise) => void; declare const afterAll: (inner: (state: WorkerState) => Promise) => void; declare const browserType: import('../index').BrowserType; // global variables in assets declare const testOptions: { HEADLESS: boolean; WIRE: boolean; }; declare var MAC: boolean; declare var LINUX: boolean; declare var WIN: boolean; declare var CHROMIUM: boolean; declare var FFOX: boolean; declare var WEBKIT: boolean; // keyboard.html declare function getResult(): string;