import type { CSSProperties } from 'react'; import type { EChartsOption, SetOptionOpts } from 'echarts'; export interface ReactEChartsProps { option: EChartsOption; style?: CSSProperties; settings?: SetOptionOpts; loading?: boolean; theme?: 'light' | 'dark'; width?: string; height?: string; } export declare function ECharts({ option, style, settings, loading, theme, width, height, }: ReactEChartsProps): import("react/jsx-runtime").JSX.Element;