import { CreateNodes, CreateNodesV2 } from '@nx/devkit';
export interface CypressPluginOptions {
    ciTargetName?: string;
    targetName?: string;
    openTargetName?: string;
    componentTestingTargetName?: string;
}
export declare const createNodesV2: CreateNodesV2<CypressPluginOptions>;
/**
 * @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<CypressPluginOptions>;
