import type { BlackoutError, Brand, Brands } from '@farfetch/blackout-client'; export type BrandsResultNormalized = Omit & { entries: Brand['id'][]; }; export type BrandsState = { error: Record; isLoading: Record; result: Record; };