import * as _playwright_test from '@playwright/test'; import { Page, TestInfo } from '@playwright/test'; export { expect } from '@playwright/test'; interface ChromaticConfig { delay?: number; diffIncludeAntiAliasing?: boolean; diffThreshold?: number; disableAutoCapture?: boolean; forcedColors?: string; pauseAnimationAtEnd?: boolean; prefersReducedMotion?: string; resourceArchiveTimeout?: number; allowedArchiveDomains?: string[]; } declare function takeArchive(page: Page, testInfo: TestInfo): Promise; declare function takeArchive(page: Page, name: string, testInfo: TestInfo): Promise; declare const test: _playwright_test.TestType<_playwright_test.PlaywrightTestArgs & _playwright_test.PlaywrightTestOptions & ChromaticConfig & { save: void; }, _playwright_test.PlaywrightWorkerArgs & _playwright_test.PlaywrightWorkerOptions>; export { ChromaticConfig, takeArchive, test };