import { FC, SVGAttributes } from 'react'; import { Position, RawData, AnimationOptions, ChartPadding, GridConfig, AxisConfig, Dimensions, LineConfig, MarkerConfig, ShapeClickEventHandler, ScaleLinearDefinition } from 'eazychart-core/src/types'; import { TooltipProps } from '@/components/addons/tooltip/Tooltip'; export interface LineChartProps extends SVGAttributes { data: RawData; line?: LineConfig; 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 LineChart: FC;