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