import React from 'react';
import SliderBar, { IProps as P, IState as S } from "./SliderBar";
export interface IProps extends P {
    trackProps?: React.HTMLAttributes<HTMLDivElement>;
    thumbProps?: React.HTMLAttributes<HTMLDivElement>;
}
export interface IState extends S {
}
export declare class SliderBarLine extends SliderBar<IProps, IState> {
    render(): JSX.Element;
}
