import { default as React } from 'react'; import { GoogleMapBaseProps, GoogleMapSettingsProps } from './GoogleMap.types'; export type GoogleMapProps = Partial & GoogleMapSettingsProps & { id: string; className?: string; }; declare function GoogleMapComponent(props: GoogleMapProps): React.JSX.Element; export default GoogleMapComponent;