import type { MapInstance, MapboxInstance } from './map-types'; type MapCreatedEvent = { getMapboxInstance: () => MapboxInstance; getMapInstance: () => MapInstance; }; declare function useMapCreated(init?: () => void): { getMapboxInstance: () => MapboxInstance; getMapInstance: () => MapInstance; }; export { useMapCreated }; export type { MapCreatedEvent };