declare const config: {
    grid: {
        top: number;
        bottom: number;
        left: number;
        right: number;
        containLabel: boolean;
    };
    tooltip: {
        trigger: string;
        showDelay: number;
        axisPointer: {
            type: string;
            z: number;
        };
    };
    dataZoom: false | {
        type: string;
        xAxisIndex: number[];
        filterMode: string;
        minValueSpan: number;
    }[];
    legend: {
        left: string;
    };
    xAxis: {
        splitLine: {
            show: boolean;
        };
    };
    yAxis: {
        splitLine: {
            show: boolean;
        };
    };
};
export default config;
