/** * Comando: execute * * Executa um plano de execução Ralph. */ /** * Opções do comando execute */ export interface ExecuteOptions { plan: string; task?: string; interactive?: boolean; resume?: boolean; maxIterations?: number; dryRun?: boolean; verbose?: boolean; json?: boolean; } /** * Executa o comando execute */ export declare function executeCommand(options: ExecuteOptions): Promise; //# sourceMappingURL=execute.d.ts.map