import type { AgentName } from '../types.js'; export interface ToolClassification { destructive: boolean; readOnly: boolean; network: boolean; longRunning: boolean; handlesSecrets: boolean; } export declare function classifyTool(agent: AgentName, toolName: string, input?: unknown): ToolClassification;