/** * MCP Tool: Get Shopping Lists * Retrieve all shopping lists or filter by user */ import type { SuperPrecioApiClient } from '../client/superPrecioApi.js'; export declare const getShoppingListsTool: { name: string; description: string; inputSchema: { type: string; properties: { userId: { type: string; description: string; }; }; }; }; export declare function executeGetShoppingLists(client: SuperPrecioApiClient, args: { userId?: number; }): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: undefined; }>; //# sourceMappingURL=getShoppingLists.d.ts.map