/** * MCP Tool: Get My Alerts * Get all price alerts with their current status */ import type { SuperPrecioApiClient } from '../client/superPrecioApi.js'; export declare const getMyAlertsTool: { name: string; description: string; inputSchema: { type: string; properties: { userId: { type: string; description: string; }; isActive: { type: string; description: string; }; }; }; }; export declare function executeGetMyAlerts(client: SuperPrecioApiClient, args: { userId?: number; isActive?: boolean; }): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: undefined; }>; //# sourceMappingURL=getMyAlerts.d.ts.map