import { AgentTool } from '../types/index.js'; /** * Example tool template - Replace this with your actual tool implementation * * This is a basic template showing the structure of a tool. * Copy this file and modify it to create your own custom tool. */ export declare function createExampleTool(options?: { option1?: string; option2?: number; }): AgentTool; /** * Example: Calculator tool * * This shows a more complete example with multiple operations */ export declare function createCalculatorTool(): AgentTool; //# sourceMappingURL=example.d.ts.map