/** * Claude Exec Command Module * * Validates and executes multiple plans sequentially by spawning the `claude` * CLI with streaming output. Performs pre-flight validation and auto-remediation * before execution. */ import { CommandResult } from './types'; /** * Main exec command: validate and execute multiple plans sequentially */ export declare function claudeExec(planIds: number[]): Promise; //# sourceMappingURL=exec.d.ts.map