import { type CreateNodes } from '@nx/devkit'; export interface PlaywrightPluginOptions { targetName?: string; ciTargetName?: string; /** * Maximum time in milliseconds the inferred web server readiness task waits * for a server to be ready before failing. Overrides the `timeout` each * Playwright `webServer` configures. Defaults to that configured timeout, * or 60000 when neither is set. */ webServerTimeout?: number; /** * Whether to infer a task that waits for the web server to be ready before the * Playwright test tasks run. When false, no readiness task is inferred and the * tests fall back to Playwright's own `reuseExistingServer` probe. Defaults to * true. */ waitForWebServer?: boolean; } export declare const createNodes: CreateNodes; export declare const createNodesV2: CreateNodes; export declare function _clearWarnedUnparseableCommands(): void;