/** * MCP Tool: Remove Shopping List * Delete a shopping list (soft delete) */ import type { SuperPrecioApiClient } from '../client/superPrecioApi.js'; export declare const removeShoppingListTool: { name: string; description: string; inputSchema: { type: string; properties: { listId: { type: string; description: string; }; }; required: string[]; }; }; export declare function executeRemoveShoppingList(client: SuperPrecioApiClient, args: { listId: number; }): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: undefined; }>; //# sourceMappingURL=removeShoppingList.d.ts.map