/// import type { CommonPropsType } from '../../../types'; import type { ECOption } from './echarts'; interface IChartProps extends CommonPropsType { chartOptions: ECOption; ['data-testid']: string; } export declare function Chart(props: IChartProps): JSX.Element; export {};