import type { ProxmoxClient } from "../client/proxmox-client.js"; export declare const nodesToolDefinitions: ({ name: string; description: string; inputSchema: { type: "object"; properties: { node?: undefined; type?: undefined; }; required: never[]; }; } | { name: string; description: string; inputSchema: { type: "object"; properties: { node: { type: string; description: string; }; type?: undefined; }; required: string[]; }; } | { name: string; description: string; inputSchema: { type: "object"; properties: { node: { type: string; description: string; }; type: { type: string; description: string; }; }; required: string[]; }; })[]; export declare function handleNodesTool(name: string, args: Record, client: ProxmoxClient): Promise<{ content: Array<{ type: "text"; text: string; }>; }>; //# sourceMappingURL=nodes.d.ts.map