import { FC, SVGAttributes } from 'react'; import { Position, RawData, AnimationOptions, ChartPadding, GridConfig, AxisConfig, Dimensions, LineConfig, MarkerConfig, AxisConfigMulti, ShapeClickEventHandler, ScaleLinearDefinition } from 'eazychart-core/src/types'; import { TooltipProps } from '@/components/addons/tooltip/Tooltip'; import { LegendProps } from '@/components/addons/legend/Legend'; export interface MultiLineChartProps extends SVGAttributes { data: RawData; colors?: string[]; line?: LineConfig; 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 MultiLineChart: FC;