import type { Tool } from '@modelcontextprotocol/sdk/types.js'; /** * Get all available tools */ export declare function getTools(): Tool[]; /** * Handle a tool call */ export declare function handleToolCall(name: string, args: Record | undefined): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; //# sourceMappingURL=tools.d.ts.map