/** * MCP Tool: Optimize Shopping List * 🔥 THE STAR FEATURE - Find the best supermarket for your entire shopping list */ import type { SuperPrecioApiClient } from '../client/superPrecioApi.js'; export declare const optimizeShoppingListTool: { name: string; description: string; inputSchema: { type: string; properties: { listId: { type: string; description: string; }; }; required: string[]; }; }; export declare function executeOptimizeShoppingList(client: SuperPrecioApiClient, args: { listId: number; }): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: undefined; }>; //# sourceMappingURL=optimizeShoppingList.d.ts.map