/** * Tool Handlers Registry * Maps tool names to handler functions */ import { HAClient } from './ha-client.js'; type ToolHandler = (client: HAClient, args: any) => Promise<{ content: Array<{ type: string; text: string; }>; isError?: boolean; }>; /** * Tool Handlers Registry * * Each handler is a function that takes (client, args) and returns a response */ export declare const toolHandlers: Record; export {}; //# sourceMappingURL=handlers.d.ts.map