import type { FC } from 'react'; import './Chart.less'; interface ChartProps { color?: string; } declare const Chart: FC; export default Chart;