import type { ExecutorContext } from '@nx/devkit'; import type { ServeOptions } from '../utilities/server'; export type serveExecutorOptions = { serve: string; serveOptions: Record; e2eTests: string[]; watch: boolean; proxy?: boolean; } & ServeOptions; export declare function e2eAppTestsExecutor(options: serveExecutorOptions, context: ExecutorContext): Promise<{ success: boolean; }>; export default e2eAppTestsExecutor;