import { expect, type TestType, type PlaywrightTestArgs, type PlaywrightWorkerArgs, type PlaywrightWorkerOptions } from '@playwright/test'; export interface ServerConfig { port?: number; host?: string; path: string; } export interface TestOptions { servers?: ServerConfig[]; explicitStop?: boolean; } export interface ServerFixture { server: any; url: string; stop(): Promise; } export interface TestArgs extends PlaywrightTestArgs { servers: ServerFixture[]; } export type BrowserTest = TestType; export declare function setup(opts?: TestOptions): BrowserTest; export { expect }; //# sourceMappingURL=index.d.ts.map