/** * MCP Tool: Get Best Deals * Find the best deals and discounts across all supermarkets */ import type { SuperPrecioApiClient } from '../client/superPrecioApi.js'; export declare const getBestDealsTool: { name: string; description: string; inputSchema: { type: string; properties: { category: { type: string; description: string; }; maxResults: { type: string; description: string; minimum: number; maximum: number; default: number; }; }; required: string[]; }; }; export declare function executeGetBestDeals(client: SuperPrecioApiClient, args: { category: string; maxResults?: number; }): Promise<{ content: { type: string; text: string; }[]; }>; //# sourceMappingURL=getBestDeals.d.ts.map