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