import type { CSSProperties, ReactElement } from "react"; type MapLoadingStateProps = { /** Whether the map is currently loading */ isLoading: boolean; /** Whether there was an error loading the map */ error?: boolean; /** CSS class name */ className?: string; /** Inline styles */ style?: CSSProperties; }; /** * Accessible loading state component for the map * Shows a spinner while loading, error message on failure */ export declare const MapLoadingState: ({ isLoading, error, className, style }: MapLoadingStateProps) => ReactElement; export {};