/** * MCP Tool: Add Items to Shopping List * Add products to an existing shopping list */ import type { SuperPrecioApiClient } from '../client/superPrecioApi.js'; export declare const addItemsToListTool: { name: string; description: string; inputSchema: { type: string; properties: { listId: { type: string; description: string; }; items: { type: string; description: string; items: { type: string; properties: { productName: { type: string; description: string; }; barcode: { type: string; description: string; }; quantity: { type: string; description: string; minimum: number; default: number; }; notes: { type: string; description: string; }; }; required: string[]; }; minItems: number; }; }; required: string[]; }; }; export declare function executeAddItemsToList(client: SuperPrecioApiClient, args: { listId: number; items: Array<{ productName: string; barcode?: string; quantity?: number; notes?: string; }>; }): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: undefined; }>; //# sourceMappingURL=addItemsToList.d.ts.map