/** * MCP Tool: Subscribe Device * Subscribe a device to receive push notifications */ import type { SuperPrecioApiClient } from '../client/superPrecioApi.js'; export declare const subscribeDeviceTool: { name: string; description: string; inputSchema: { type: string; properties: { deviceToken: { type: string; description: string; }; }; required: string[]; }; }; export declare function executeSubscribeDevice(client: SuperPrecioApiClient, args: { deviceToken: string; }): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=subscribeDevice.d.ts.map