import { MapModel } from "../model/MapModel";
import { MapModelProps } from "./hooks/useMapModel";
/**
* Configures the given map as the default map for all child components.
* Child components do not need to specify the map explicitly, unless they wish to use a different one.
*
* @example
*
* Using map model reference:
*
* ```tsx
*
*
*
*
* ```
*
* @group UI Components and Hooks
*/
export declare function DefaultMapProvider(props: Required & {
children?: React.ReactNode;
}): import("react").JSX.Element;
/**
* Accesses the default map props provided by {@link DefaultMapProvider} (or returns undefined).
*
* @internal
*/
export declare function useDefaultMap(): MapModel | undefined;