MarkerConfig: {
    data:
        | { content: GeoJSON; type: "static" }
        | {
            pollingEnabled: boolean;
            pollingIntervalMs: number;
            type: "dynamic";
            url: string;
        };
} & {
    connector: { style: Omit<xarrowPropsType, "end" | "start"> } & EnabledOption;
    editorOptions: { enableRotation: boolean; isGrouped: boolean };
    icon: {
        center: IconCenter;
        enabled: boolean;
        size: number;
        src: string;
        style: CSSProperties;
        type: "svg" | "image";
    };
    id: string;
    label: {
        anchor: LabelAnchor;
        offset: [number, number];
        style: CSSProperties;
        text: string;
    } & EnabledOption;
    rotation: number;
}