import { CSSProperties } from 'react'; import * as echarts from 'echarts'; import { PieSeriesOption } from 'echarts'; type ECOption = echarts.ComposeOption; export interface PieProps { color?: Array; series: Array; loading?: boolean; smooth?: boolean; style?: CSSProperties; options?: ECOption; onDownCallBack?: any; loadingType?: any; } export declare function ChartsPie(props: PieProps): JSX.Element; export {};