import { FC } from 'react';
import { ChartNestedDataShape } from '../common/data';
import { BarChartProps } from './BarChart';
export interface StackedNormalizedBarChartProps extends BarChartProps {
    /**
     * Data the chart will receive to render.
     *
     * @default []
     */
    data: ChartNestedDataShape[];
}
export declare const StackedNormalizedBarChart: FC<Partial<StackedNormalizedBarChartProps>>;
