import { PhonePeEmitterSubscription } from '../../subscription/PhonePeEmitterSubscription'; import { LocationBridgeContract, LOCATION_PRIORITY } from './LocationBridgeContract'; export declare class WebLocationBridge implements LocationBridgeContract { getAddress(latitude: number, longitude: number): Promise; startUpdatingLocation(): void; stopUpdatingLocation(): void; getCurrentLocation(): Promise; onLocationUpdateSuccess(callbackName: string, callback: (response: any) => void): PhonePeEmitterSubscription; onLocationUpdateFailure(callbackName: string, callback: (response: any) => void): PhonePeEmitterSubscription; isLocationTurnedOn(): Promise; turnOnLocation(): Promise; setLocationPriority(locationPriority: LOCATION_PRIORITY): void; }