///
///
import React = require("react");
import { Cancelable } from "lodash";
export declare class NumberSliderInput extends React.Component<{
value: number;
onChange: (value) => any;
}, any> {
private _prevCursor;
private _startValue;
private _multiplier;
private _startMouseLeft;
onStartDrag: (event: React.MouseEvent) => void;
onDrag: ((event: MouseEvent) => void) & Cancelable;
onStopDrag: () => void;
render(): JSX.Element;
}