import type { FacetGroup, FacetValue } from '@farfetch/blackout-client'; export type FacetEntity = Omit & { id: string; parentId: string; groupType: FacetGroup['type']; }; export type FacetEntityWithChildren = FacetEntity & { children: FacetEntity[] | undefined; };