import React, { FC } from 'react'; import { AnimationOptions, ChartPadding, Dimensions, RawData, ShapeClickEventHandler, LegendClickEventHandler } from 'eazychart-core/src/types'; import { TooltipProps } from '@/components/addons/tooltip/Tooltip'; import { LegendProps } from './addons/legend/Legend'; export declare type ChartProps = { padding?: Partial; dimensions?: Partial; animationOptions?: AnimationOptions; rawData: RawData; scopedSlots?: { LegendComponent?: React.FC; TooltipComponent?: React.FC; }; isRTL?: boolean; onShapeClick?: ShapeClickEventHandler; onLegendClick?: LegendClickEventHandler; children?: React.ReactNode; isWrapped?: boolean; }; export declare const Chart: FC;