/** * QA360 MCP Tool Registry - Simple Implementation */ import { Tool, ToolRegistryOptions, ToolSchema } from './types.js'; export declare function buildToolsRegistry(opts: ToolRegistryOptions): { list: () => Tool[]; describe: () => ToolSchema[]; call: (name: string, args: any) => Promise; }; //# sourceMappingURL=registry.d.ts.map