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