import { Tool } from '../types/tool';
export declare function loadToolsFromFile(filePath: string): Promise<Tool[]>;
export declare function loadToolFromJson(name: string, toolData: any): Tool;
