export interface ToolDefinition { type: 'function'; function: { name: string; description?: string; parameters?: { type?: string; properties?: Record; required?: string[]; [key: string]: unknown; }; [key: string]: unknown; }; } //# sourceMappingURL=types.d.ts.map