import type * as ElevenLabs from "../index"; /** * Definition for a tool the client can call. */ export interface Tool { name: string; title?: string; description?: string; inputSchema: Record; outputSchema?: Record; icons?: ElevenLabs.Icon[]; annotations?: ElevenLabs.ToolAnnotations; meta?: Record; execution?: ElevenLabs.ToolExecution; /** Accepts any additional properties */ [key: string]: any; }