import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * Geolocation data structure */ export interface GeolocationValue { latitude?: number; longitude?: number; accuracy?: number; } /** * Geolocation field widget - provides a location picker with coordinates * Supports manual entry and browser geolocation API */ export declare function GeolocationField({ value, onChange, field, readonly, error, ...props }: FieldWidgetComponentProps): React.JSX.Element;