export declare const transformWGS84ToGCJ02: (lng: any, lat: any) => { lng: any; lat: any; }; export interface PositionState { lng: number; lat: number; } export interface UseGeolocationOptions { url?: string; enableHighAccuracy?: boolean; timeout?: number; maximumAge?: number; } export declare const useGeolocation: (options?: UseGeolocationOptions) => { loading: import('vue').Ref; error: import('vue').Ref; wgs84: { lng: number; lat: number; }; gcj02: { lng: number; lat: number; }; startPosition: { lng: number; lat: number; }; getLocation: () => Promise; getLocationOnce: () => Promise; }; export default useGeolocation; //# sourceMappingURL=useDdGeolocation.d.ts.map