LocationMapConfig: {
    additionalLayers: EvervizLayerSpesification[];
    additionalSources: EvervizSourceSpecification[];
    animation: AnimationProps;
    caption: { style: CSSProperties; text: string };
    customAttribution: CustomAttributionProps & EnabledOption;
    disableInternalReferenceResolutionLogic: boolean;
    disableLayerRemoving: boolean;
    disableSplashScreen: boolean;
    enableFeatureEditing: boolean;
    fullScreenControls: FullscreenControlProps;
    geolocateControls: GeolocateControlsProps;
    interactive: boolean;
    locale: string;
    logLevel: LogLevelNames;
    mapNavigation: MapNavigationProps;
    markers: MarkerConfig[];
    miniMap: MiniMapProps;
    resolution: LocationMapResolution;
    reuseMaps: boolean;
    scaleControls: ScaleControlsProps;
    selectFeatureStrategy: SelectFeatureStrategy;
    splashScreen: SplashScreenProps;
    styledThemeLayers: LayerOptions[];
    styleOverride: CSSProperties;
    subtitle: { style: CSSProperties; text: string };
    theme:
        | { data: StyleSpecification; type: "static" }
        | { type: "dynamic"; url: string };
    title: { style: CSSProperties; text: string };
    version: "0";
    viewState: Omit<
        ViewStateOptions,
        "disableInternalReferenceResolutionLogic",
    >;
}

Type declaration