import { EChartOption } from 'echarts';
import { UniversalStyle } from '../title';
interface IProps {
    /**
     * 类名
     */
    className?: string;
    /**
     * 通用样式
     */
    universalStyle?: UniversalStyle;
    /**
     * 数据项
     */
    dataSource: {
        name: string;
        value: number;
    }[];
    /**
     * echarts options配置
     */
    options: EChartOption & {
        /**
         * 空态占位图 url
         */
        placeholder?: string;
    };
}
declare const MiniLineChart: (props: IProps) => JSX.Element;
export default MiniLineChart;
