import { Command } from 'commander'; export declare const supplierSearchCommand: Command; /** * Build the JSON summary for supplier search results. * Inlines key fields (incl. url / shopUrl) so an LLM/agent can surface * clickable source links without reading the full cache file. The cache_file * pointer is kept for retrieving the complete payload. */ export declare function buildSupplierJsonSummary(response: any, cacheFile: string | null): { summary: { result_count: any; suppliers: any; }; cache_file: string | null; }; //# sourceMappingURL=supplier-search.d.ts.map