/// <reference types="react" />
export declare type PointId = 'point-left' | 'point-right' | 'point-single';
export interface ISliderPointProps {
    value: number;
    disabled?: boolean;
    position: string;
    active: boolean;
}
declare function SliderPoint(props: ISliderPointProps): JSX.Element;
export default SliderPoint;
