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