/// <reference types="react" />
export interface ISliderDotsProps {
    marks: Record<number | string, React.ReactNode>;
    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;
