/** * MCP Tool: Search by Code * Searches for products by EAN/barcode */ import type { SuperPrecioApiClient } from '../client/superPrecioApi.js'; export declare const searchByCodeTool: { name: string; description: string; inputSchema: { type: string; properties: { code: { type: string; description: string; }; }; required: string[]; }; }; export declare function executeSearchByCode(client: SuperPrecioApiClient, args: { code: string; }): Promise<{ content: { type: string; text: string; }[]; }>; //# sourceMappingURL=searchByCode.d.ts.map