import 'reflect-metadata'; import { z } from "zod"; import { BaseAgent } from "../../agent/BaseAgent"; interface ToolInfo { name: string; description: string; requiresConfig: boolean; configExample?: Record; configSchema?: z.ZodSchema | any; } export declare const AvailableTools: ToolInfo[]; export declare function getAgentSmith(): Promise>; export declare const AgentSmith: BaseAgent; export {};