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