import { Component } from 'react'; import { BarChartProps } from './BarChart'; import { ChartNestedDataShape } from '../common/data'; interface StackedBarChartProps extends BarChartProps { data: ChartNestedDataShape[]; } export declare class StackedBarChart extends Component { static defaultProps: Partial; render(): JSX.Element; } export {};