import { Agent } from '../agent'; export declare class AgentToolUseTracker { #private; addToolUse(agent: Agent, toolNames: string[], options?: { allowEmpty?: boolean; }): void; hasUsedTools(agent: Agent): boolean; toJSON(): Record; }