import { GeolocationControlProps } from './types'; import { JSX } from 'react'; /** * Provides a seamless interface for accessing device location through the browser's Geolocation API, with permission handling, continuous tracking, and error management. * * @example * ```tsx * console.log(coords.latitude, coords.longitude)} * onError={(error) => console.error(error.message)} * /> * ``` */ export declare function GeolocationControls({ disabled, labels, PaperProps, TooltipProps, watch, onChange, onError, }: GeolocationControlProps): JSX.Element;