import { Component } from 'react';
import { LineChartProps } from '../LineChart';
import { ChartShallowDataShape } from '../common/data';
export interface SparklineChartProps extends LineChartProps {
    data: ChartShallowDataShape[];
}
export declare class SparklineChart extends Component<SparklineChartProps, {}> {
    static defaultProps: Partial<SparklineChartProps>;
    render(): JSX.Element;
}
