/** * MCP Tool: Compare Prices * Compares prices for a product across all supermarkets and finds the best deal */ import type { SuperPrecioApiClient } from '../client/superPrecioApi.js'; export declare const comparePriceTool: { name: string; description: string; inputSchema: { type: string; properties: { productName: { type: string; description: string; }; maxResults: { type: string; description: string; minimum: number; maximum: number; default: number; }; }; required: string[]; }; }; export declare function executeComparePrice(client: SuperPrecioApiClient, args: { productName: string; maxResults?: number; }): Promise<{ content: { type: string; text: string; }[]; }>; //# sourceMappingURL=comparePrice.d.ts.map