/** * MCP Tool: Create Shopping List * Creates a new shopping list with optional items */ import type { SuperPrecioApiClient } from '../client/superPrecioApi.js'; export declare const createShoppingListTool: { name: string; description: string; inputSchema: { type: string; properties: { name: { type: string; description: string; }; description: { type: string; description: string; }; userId: { 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; }; notes: { type: string; description: string; }; }; required: string[]; }; }; }; required: string[]; }; }; export declare function executeCreateShoppingList(client: SuperPrecioApiClient, args: { name: string; description?: string; userId?: 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=createShoppingList.d.ts.map