/** * Anti-pattern detector for AI agent tool usage. * Tracks recent calls and emits hints when inefficient patterns are detected. */ /** Record a tool call for pattern analysis */ export declare function recordCall(name: string, depth: number): void; /** Detect anti-patterns in recent call history. Returns hint text or null. */ export declare function detectAntiPattern(): string | null; /** Reset state (for testing) */ export declare function resetAntiPatterns(): void; //# sourceMappingURL=anti-patterns.d.ts.map