import type { Config } from 'testplane'; import type { ConfigAdapter } from './'; import type { TestplaneTestAdapter } from '../test/testplane'; export declare class TestplaneConfigAdapter implements ConfigAdapter { private _config; static create(this: new (config: Config) => T, config: Config): T; constructor(config: Config); get tolerance(): number; get antialiasingTolerance(): number; get browserIds(): string[]; getBrowserConfig(browserId: string): ReturnType; getScreenshotPath(test: TestplaneTestAdapter, stateName: string): string; }