import type { Map, StyleSpecification, LayerSpecification } from 'maplibre-gl'; declare const mapState: import("jotai").PrimitiveAtom & { init: Map | null; }; declare const isMapLoadedState: import("jotai").PrimitiveAtom & { init: boolean; }; declare const styleURLState: import("jotai").PrimitiveAtom & { init: string; }; declare const spriteState: import("jotai").PrimitiveAtom & { init: string | undefined; }; declare const styleObjState: import("jotai").PrimitiveAtom & { init: StyleSpecification | null; }; declare const selectedLayerIDState: import("jotai").PrimitiveAtom & { init: string | undefined; }; declare const layerState: import("jotai").Atom; export { mapState, isMapLoadedState, styleURLState, spriteState, styleObjState, selectedLayerIDState, layerState, };