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