import * as React from 'react'; import mapboxgl from 'mapbox-gl'; import { Control } from './types.js'; declare const GeolocateControl: ({ position, onGeolocate, ...other }: GeolocateControlType) => null; declare const _default: React.MemoExoticComponent<({ position, onGeolocate, ...other }: GeolocateControlType) => null>; type GeolocateControlType = { positionOptions?: mapboxgl.PositionOptions | undefined; fitBoundsOptions?: mapboxgl.FitBoundsOptions | undefined; trackUserLocation?: boolean | undefined; showAccuracyCircle?: boolean | undefined; showUserLocation?: boolean | undefined; showUserHeading?: boolean | undefined; onGeolocate?: (event: GeolocationPosition) => void; } & Control; export { GeolocateControl, _default as default };