export declare const defaultConfig: {
    tooltip: {
        trigger: string;
        confine: boolean;
    };
    legend: {
        show: boolean;
    };
    xAxis: {
        show: boolean;
        type: string;
        boundaryGap: boolean;
    };
    yAxis: {
        show: boolean;
        axisLabel: {
            show: boolean;
        };
        type: string;
    };
    grid: {
        left: string;
        right: string;
        bottom: string;
        width: string;
        top: string;
        height: string;
        containLabel: boolean;
    };
};
export declare const gaugeInnerCircleSeries: {
    type: string;
    radius: string;
    splitNumber: number;
    splitLine: {
        show: boolean;
    };
    axisLabel: {
        show: boolean;
    };
    axisTick: {
        show: boolean;
    };
    pointer: {
        show: boolean;
    };
};
export declare enum ETrend {
    Down = "down",
    Up = "up",
    Equal = "equal"
}
export declare const times: string[];
