import React from 'react';
export interface DotProps {
    className: string;
    vertical: boolean;
    active: boolean;
    point: number;
    range: number;
    min: number;
}
declare function Dot({ className, vertical, active, point, range, min }: DotProps): JSX.Element;
declare const _default: React.MemoExoticComponent<typeof Dot>;
export default _default;
