import { ClassName } from "@helpers/types"; import { InputProps } from "react-select"; export interface RangeSliderProps extends ClassName { id?: string; step?: number; value: IRange; labelPosition?: TLabelPosition; minValueSliderProps?: Pick; maxValueSliderProps?: Pick; onChange(range: IRange): void; } export interface IRange { start: number; end: number; } export type TLabelPosition = "none" | "top" | "bottom" | "topFloating" | "bottomFloating";