export const VALUE_ATTR: "value";
export const DEFAULT_STATE: any;
export const DISPLAY_NAME: "Container(Slider)";
export default Slider;
declare class Slider extends RComponent<any, any, any> {
    static displayName: string;
    static propTypes: any;
    static defaultProps: {
        value: number;
    };
    constructor(props: any);
    onChange(value: any): void;
    onAfterChange(value: any): void;
    render(): import("react/jsx-runtime").JSX.Element;
}
import { Component as RComponent } from 'react';
