/** * MCP Tool: Remove Price Alert * Delete a price alert */ import type { SuperPrecioApiClient } from '../client/superPrecioApi.js'; export declare const removePriceAlertTool: { name: string; description: string; inputSchema: { type: string; properties: { alertId: { type: string; description: string; }; }; required: string[]; }; }; export declare function executeRemovePriceAlert(client: SuperPrecioApiClient, args: { alertId: number; }): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: undefined; }>; //# sourceMappingURL=removePriceAlert.d.ts.map