import type { ExecutorContext } from '@nx/devkit'; import type { CliCommandExecutorOptions } from './schema.js'; export type ExecutorOutput = { success: boolean; command?: string; error?: Error; }; export default function runCliExecutor(terminalAndExecutorOptions: CliCommandExecutorOptions, context: ExecutorContext): Promise;