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