import { CreateNodes, CreateNodesV2 } from '@nx/devkit';
export interface PlaywrightPluginOptions {
    targetName?: string;
    ciTargetName?: string;
}
export declare const createNodesV2: CreateNodesV2<PlaywrightPluginOptions>;
/**
 * @deprecated This is replaced with {@link createNodesV2}. Update your plugin to export its own `createNodesV2` function that wraps this one instead.
 * This function will change to the v2 function in Nx 20.
 */
export declare const createNodes: CreateNodes<PlaywrightPluginOptions>;
