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