/**
 * Example: Adding a new tool with the unified registry
 * To add this tool:
 * 1. Rename this file to remove .example (test-tool.ts)
 * 2. Import and register in src/tools/index.ts:
 *    import { testTool } from './test-tool.js';
 *    toolRegistry.push(testTool);
 *
 * That's it! No more editing multiple files.
 */
import { UnifiedTool } from './registry.js';
export declare const testTool: UnifiedTool;
//# sourceMappingURL=test-tool.example.d.ts.map