import { Map } from "mapbox-gl";
import { type ComputedRef, type Ref } from "#imports";
export declare function useMapboxRef(mapID: string): Ref<Map | undefined>;
export declare function useMapboxInstance(mapID: string): Ref<Map | undefined>;
export declare function _useMapboxInstanceWithLoaded(mapID: string): ComputedRef<{
    map: Map;
    loaded: boolean;
} | undefined>;
export declare function cleanMapboxInstance(mapID: string): void;
