import { GoogleMapSettingsProps, GoogleMapMapData, GoogleMapWithConsentProps } from '../GoogleMap.types'; type GoogleMapPropsWithConsent = GoogleMapWithConsentProps & { hasRequiredConsent?: boolean; componentConsentPolicy?: Record; }; declare const useGoogleMapProps: (props: GoogleMapSettingsProps & { id: string; className?: string; }) => { componentProps: Omit; mapData: GoogleMapMapData; }; export default useGoogleMapProps;