import type { ProductRow } from './ProductRow'; /** * GET /v1/products/search response — cross-category text match. */ export type SearchProductsOut = { query: string; rows: Array; total: number; limit: number; offset: number; }; //# sourceMappingURL=SearchProductsOut.d.ts.map