import { type DisabledProps } from '../../model/DisabledProps'; import { type TitleProps } from '../../model/HeadlineType'; import { type InputProps } from '../Input/InputProps'; export interface InputRangeProps extends InputProps, DisabledProps, TitleProps { items?: string[]; min?: number; max?: number; list?: number[]; step?: number; onChange?: (value: number) => void; }