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