import { FlyLineFormat } from "./interface";
/** 地图数据列表 */
export declare const mapJsonList: any;
/** 地图配置项 */
export declare const mapOption: {
    backgroundColor: string;
    tooltip: {
        show: boolean;
        trigger: string;
        alwaysShowContent: boolean;
        backgroundColor: string;
        borderColor: string;
        showDelay: number;
        hideDelay: number;
        triggerOn: string;
        enterable: boolean;
        textStyle: {
            color: string;
            fontSize: string;
            width: number;
            height: number;
            overflow: string;
        };
    };
    geo: {
        map: string;
        roam: boolean;
        zlevel: number;
        zoom: number;
        label: {
            show: boolean;
            color: string;
        };
        itemStyle: {
            areaColor: string;
            borderColor: string;
            borderType: string;
            borderWidth: number;
        };
        emphasis: {
            itemStyle: {
                borderWidth: number;
            };
            label: {
                color: string;
            };
        };
        tooltip: {
            show: boolean;
        };
        regions: any[];
    };
    series: any[];
};
/** 飞线系列 */
export declare const flySeries: {
    type: string;
    zlevel: number;
    effect: {
        show: boolean;
        period: number;
        trailLength: number;
        color: string;
        symbol: string;
        symbolSize: number;
    };
    lineStyle: {
        show: boolean;
        color: string;
        width: number;
        opacity: number;
        curveness: number;
    };
    data: FlyLineFormat[];
};
/** 点位系列 */
export declare const pointSeries: {
    type: string;
    coordinateSystem: string;
    geoIndex: number;
    symbol: string;
    symbolSize: number;
    rippleEffect: {
        scale: number;
    };
    itemStyle: {
        color: string;
    };
    encode: {
        tooltip: number;
    };
    emphasis: {
        scale: boolean;
    };
    data: any[];
};
