import type { IModelGroup } from '~/types/model-group'; export interface IParameterModelValue { name: string title: string } export interface IParameterModel { name: string title: string values: IParameterModelValue[] group: IModelGroup is_filter: boolean kind: 'range' | 'select' | 'radio' | 'chips' icon: string }