export interface GeoLocationState { latitude: number | null; longitude: number | null; error: GeolocationPositionError | null; } export declare function useGeoLocation(options?: PositionOptions): GeoLocationState;