import { PlaywrightTestAdapter, type PwtRawTest } from '../test/playwright'; import type { TestCollectionAdapter } from './'; export declare class PlaywrightTestCollectionAdapter implements TestCollectionAdapter { private _testAdapters; static create(this: new (tests: PwtRawTest[]) => T, tests: PwtRawTest[]): T; constructor(tests: PwtRawTest[]); get tests(): PlaywrightTestAdapter[]; }