import type { OptionValue } from './option-value.model'; export interface Option { /** * A unique identifier for the option. * * @example 'bcs5vaOjgEQ9Uaaadk9zQIrXE6' */ id: string; /** * A label for the option which is typically presented to the user. * * @example 'Length' */ label: string; /** * Array of values for the option. */ values: OptionValue[]; }