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 { static defaultProps: Partial; render(): JSX.Element; }