/// export interface ISliderDotsProps { marks: Record; min: number; max: number; activeLeft: number; activeRight: number; potentialValues: number[]; disabled: boolean; } declare function Dots({ min, max, activeLeft, activeRight, potentialValues, disabled, }: ISliderDotsProps): JSX.Element; export default Dots;