import * as React from 'react';
export interface ISliderBasicExampleState {
    value: number;
}
export declare class SliderBasicExample extends React.Component<{}, ISliderBasicExampleState> {
    state: ISliderBasicExampleState;
    render(): JSX.Element;
}
