/// <reference types="react" />
import { ChartProp } from '@cisdi/common-chart';
export interface SliderProps {
    show?: boolean;
    height?: number;
    fillerStyle?: Record<string, any>;
    backgroundStyle?: Record<string, any>;
    textStyle?: Record<string, any>;
    handleStyle?: Record<string, any>;
    backgroundChart?: Record<string, any>;
}
export interface RectChartProps extends ChartProp {
    slider?: SliderProps;
}
declare const RectChart: (props: RectChartProps) => JSX.Element;
export default RectChart;
