import { MagentoGetCategoryAndProductsResponse } from '@daffodil/category/driver/magento'
interface MagentoGetCategoryAndProductsResponse {
categoryList: MagentoCategory[]
products: { items: MagentoProduct[]; page_info: MagentoSearchResultPageInfo; total_count: number; aggregations: MagentoAggregation[]; sort_fields: MagentoProductSortFields; }
}