import type { ContentSearchRefinementValue } from './ContentSearchRefinementValue'; /** * @type ContentSearchRefinement: * * @property attributeId: The ID of the refinement attribute. * - **Max Length:** 256 * * @property label: The localized label of the refinement attribute. * - **Max Length:** 4000 * * @property values: The array of refinement values. * */ export type ContentSearchRefinement = { attributeId: string; label?: string; values?: Array; } & { [key: string]: any; };