/** * @type ContentSearchRefinementValue: * * @property label: The localized label of the refinement value. * - **Max Length:** 4000 * * @property value: The refinement value. * - **Max Length:** 256 * * @property hitCount: The number of search hits when this refinement value is applied. * */ export type ContentSearchRefinementValue = { label?: string; value: string; hitCount?: number; } & { [key: string]: any; };