/** * AI-Powered Test Suggestion — Analyze a trace and suggest tests. * Pattern-based analysis, no LLM needed. */ import type { AgentTrace } from './types'; export interface TestSuggestion { category: 'tool_sequence' | 'cost_guard' | 'safety' | 'efficiency' | 'output_quality' | 'performance'; description: string; yaml_snippet: string; confidence: number; } /** * Analyze a trace and suggest tests the user should write. */ export declare function suggestTests(trace: AgentTrace): TestSuggestion[]; /** * Format suggestions for CLI display. */ export declare function formatSuggestions(suggestions: TestSuggestion[]): string; //# sourceMappingURL=suggest.d.ts.map