import { Component } from 'react';
import { BarChartProps } from '../BarChart';
import { ChartShallowDataShape } from '../common/data';
export interface BarSparklineChartProps extends BarChartProps {
    data: ChartShallowDataShape[];
}
export declare class BarSparklineChart extends Component<BarSparklineChartProps> {
    static defaultProps: Partial<BarSparklineChartProps>;
    render(): JSX.Element;
}
