import { ExecutorContext } from '@nx/devkit'; import { NxTargetOptions } from './utils/nx-target'; export interface RunOptions { runner: 'cypress' | 'playwright' | '@nx/playwright' | 'run-commands'; runnerTarget?: string; watch?: boolean; skipTargets?: boolean; targets: NxTargetOptions[]; } export declare function endToEndRunner(options: RunOptions, context: ExecutorContext): Promise<{ success: boolean; }>; export default endToEndRunner;