/** * MCP Tool: Send Notification * Send push notifications to subscribed devices */ import type { SuperPrecioApiClient } from '../client/superPrecioApi.js'; export declare const sendNotificationTool: { name: string; description: string; inputSchema: { type: string; properties: { title: { type: string; description: string; }; message: { type: string; description: string; }; deviceToken: { type: string; description: string; }; data: { type: string; description: string; }; }; required: string[]; }; }; export declare function executeSendNotification(client: SuperPrecioApiClient, args: { title: string; message: string; deviceToken?: string; data?: Record; }): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=sendNotification.d.ts.map