import type { FC, CSSProperties } from 'react'; interface EchartsProps { style: CSSProperties; hasTitle: boolean; title: string; titleFontSize: number; titleTextAlign: 'left' | 'right' | 'center'; themeColors: { colors10: string[]; colors20: string[]; }; labelFontSize?: '10px'; hasLabel?: boolean; } declare const Echarts: FC; export default Echarts;