interface Tool { name: string; description: string; inputSchema: { type: 'object'; properties: Record; required?: string[]; }; handler: (args: any, backendUrl: string) => Promise; } export declare const inventoryTools: Tool[]; export {}; //# sourceMappingURL=inventory.d.ts.map