/** * Simulate Command - drift simulate * * Speculative Execution Engine: Simulates multiple implementation approaches * BEFORE code generation, scoring them by friction, impact, and pattern alignment. */ import { Command } from 'commander'; export interface SimulateOptions { format?: 'text' | 'json' | undefined; verbose?: boolean | undefined; maxApproaches?: number | undefined; category?: string | undefined; target?: string | undefined; constraint?: string[] | undefined; } export declare function createSimulateCommand(): Command; //# sourceMappingURL=simulate.d.ts.map