import * as base from '@playwright/test'; import type { NextFixture } from './next-fixture'; import type { NextOptions } from './next-options'; import type { NextWorkerFixture } from './next-worker-fixture'; export * from '@playwright/test'; export type { NextFixture, NextOptions }; export type { FetchHandlerResult } from '../proxy'; export interface NextOptionsConfig { nextOptions?: NextOptions; } export declare function defineConfig(config: base.PlaywrightTestConfig): base.PlaywrightTestConfig; export declare const test: base.TestType; export default test;