/** * SimulationQuery — Natural language query interface for simulation results. * * Maps common plain-English questions to field lookups and stat queries. * No LLM needed — pattern matching handles the most common questions. */ /** * Answer a natural language question about simulation results. * Returns a human-readable string answer. */ export declare function querySimulation(question: string, stats: Record): string; /** * Generate a complete auto-report from solver stats. */ export declare function generateAutoReport(solverType: string, stats: Record, config?: Record): string; //# sourceMappingURL=SimulationQuery.d.ts.map