export declare enum MouseEvent {
    MouseOver = "mouseover",
    MouseOut = "mouseout"
}
export declare enum TriggerType {
    Axis = "axis",
    Item = "item",
    None = "none"
}
declare const config: {
    dataZoom: false | {
        type: string;
        filterMode: string;
        minValueSpan: number;
    }[];
    grid: {
        containLabel: boolean;
        top: number;
        bottom: number;
        left: number;
        right: number;
    };
    legend: {
        itemWidth: number;
        itemHeight: number;
    };
};
export declare const mainAxis: {
    type: string;
    splitLine: {
        show: boolean;
    };
    axisLine: {
        show: boolean;
    };
    axisTick: {
        show: boolean;
    };
    nameLocation: string;
    axisPointer: {
        type: string;
    };
};
export default config;
