import type { FC } from 'react'; import React from 'react'; import type { EChartsOption } from 'echarts'; export declare type EChartsNextForReactCoreProps = { option: EChartsOption; notMerge?: boolean; replaceMerge?: string | string[]; lazyUpdate?: boolean; silent?: boolean; style?: React.CSSProperties; className?: string; theme?: string | Record; opts?: { renderer?: 'canvas' | 'svg'; devicePixelRatio?: number; width?: number; height?: number; locale?: string | any; }; showLoading?: boolean; onChartReady?: (arg0: any) => void; onEvents?: Record; renderType?: 'canvas' | 'svg'; }; declare const EChartsNextForReactCore: FC; export default EChartsNextForReactCore;