import type { ComponentType, ContentEntry, ContentMetadata } from '@farfetch/blackout-client'; export type CustomMetadataNormalized = Record & { eventDate: number | null; }; export type ContentEntity = Omit, 'publicationDate' | 'metadata'> & { publicationDate: number | null; metadata?: Omit & { custom?: CustomMetadataNormalized; }; };