import * as React from 'react'; import { Coords } from './types'; type GoogleMapViewProps = { disabled: boolean; location: Coords | undefined; onGoogleApiLoaded: ({ maps }: { maps: any; }) => void; onChangeLocation: (location: Coords) => void; googleMapsKey?: string; }; type GoogleMapsViewState = { marker: any; maps: any; }; export declare class GoogleMapView extends React.Component { constructor(props: GoogleMapViewProps); componentDidUpdate(): void; onGoogleApiLoaded: (event: { maps: any; map: any; }) => void; render(): React.JSX.Element; } export {};