/** * MCP Tool: Set Price Alert * Create a personalized price alert for a product */ import type { SuperPrecioApiClient } from '../client/superPrecioApi.js'; export declare const setPriceAlertTool: { name: string; description: string; inputSchema: { type: string; properties: { productName: { type: string; description: string; }; targetPrice: { type: string; description: string; minimum: number; }; barcode: { type: string; description: string; }; userId: { type: string; description: string; }; notifyEnabled: { type: string; description: string; default: boolean; }; }; required: string[]; }; }; export declare function executeSetPriceAlert(client: SuperPrecioApiClient, args: { productName: string; targetPrice: number; barcode?: string; userId?: number; notifyEnabled?: boolean; }): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: undefined; }>; //# sourceMappingURL=setPriceAlert.d.ts.map