import { LegendProps } from '@/components/addons/legend/Legend'; import { TooltipProps } from '@/components/addons/tooltip/Tooltip'; import { RawData, MarkerConfig, AnimationOptions, ChartPadding, GridConfig, AxisConfig, Position, AxisConfigMulti, Dimensions, AreaConfig, ShapeClickEventHandler, ScaleLinearDefinition } from 'eazychart-core/src/types'; import { FC, SVGAttributes } from 'react'; export interface MultiAreaChartProps extends SVGAttributes { data: RawData; colors?: string[]; area?: AreaConfig; marker?: MarkerConfig; animationOptions?: AnimationOptions; padding?: ChartPadding; grid?: GridConfig; isRTL?: boolean; xAxis?: AxisConfig & ScaleLinearDefinition; yAxis?: AxisConfigMulti & ScaleLinearDefinition; dimensions?: Partial; onShapeClick?: ShapeClickEventHandler; scopedSlots?: { TooltipComponent: FC; LegendComponent: FC; }; } export declare const MultiAreaChart: FC;