export default Radar; declare namespace Radar { export { initialize }; export { initializeWithAuthToken }; export { setLogLevel }; export { setUserId }; export { getUserId }; export { setDescription }; export { getDescription }; export { setMetadata }; export { getMetadata }; export { setAnonymousTrackingEnabled }; export { getPermissionsStatus }; export { requestPermissions }; export { getLocation }; export { trackOnce }; export { trackVerified }; export { getVerifiedLocationToken }; export { startTrackingEfficient }; export { startTrackingResponsive }; export { startTrackingContinuous }; export { startTrackingCustom }; export { startTrackingVerified }; export { mockTracking }; export { stopTracking }; export { stopTrackingVerified }; export { isTracking }; export { getTrackingOptions }; export { isUsingRemoteTrackingOptions }; export { setForegroundServiceOptions }; export { setNotificationOptions }; export { getTripOptions }; export { startTrip }; export { completeTrip }; export { cancelTrip }; export { updateTrip }; export { updateTripLeg }; export { reorderTripLegs }; export { acceptEvent }; export { rejectEvent }; export { getContext }; export { searchPlaces }; export { searchGeofences }; export { autocomplete }; export { geocode }; export { reverseGeocode }; export { ipGeocode }; export { validateAddress }; export { getDistance }; export { getMatrix }; export { logConversion }; export { sendEvent }; export { on }; export { off }; export { nativeSdkVersion }; export { rnSdkVersion }; export { throwOnUnimplemented }; export { setDeviceId }; export { setDeviceType }; export { setRequestHeaders }; } declare function initialize(publishableKey: any): void; declare function initializeWithAuthToken(authToken: any): void; declare function setLogLevel(level: any): void; declare function setUserId(userId: any): void; declare function getUserId(): Promise; declare function setDescription(description: any): void; declare function getDescription(): Promise; declare function setMetadata(metadata: any): void; declare function getMetadata(): Promise; declare function setAnonymousTrackingEnabled(): void; declare function getPermissionsStatus(): Promise; declare function requestPermissions(background: any): Promise; declare function getLocation(): Promise; declare function trackOnce(options: any): Promise; declare function trackVerified(): Promise; declare function getVerifiedLocationToken(): Promise; declare function startTrackingEfficient(): void; declare function startTrackingResponsive(): void; declare function startTrackingContinuous(): void; declare function startTrackingCustom(options: any): void; declare function startTrackingVerified(options: any): void; declare function mockTracking(options: any): void; declare function stopTracking(): void; declare function stopTrackingVerified(): void; declare function isTracking(): Promise; declare function getTrackingOptions(): Promise; declare function isUsingRemoteTrackingOptions(): Promise; declare function setForegroundServiceOptions(options: any): void; declare function setNotificationOptions(options: any): void; declare function getTripOptions(): Promise; declare function startTrip(options: any): Promise; declare function completeTrip(): Promise; declare function cancelTrip(): Promise; declare function updateTrip(tripOptions: any): Promise; declare function updateTripLeg(options: any): Promise; declare function reorderTripLegs(options: any): Promise; declare function acceptEvent(eventId: any, verifiedPlaceId: any): void; declare function rejectEvent(eventId: any): void; declare function getContext(options: any): Promise; declare function searchPlaces(options: any): Promise; declare function searchGeofences(options: any): Promise; declare function autocomplete(options: any): Promise; declare function geocode(options: any): Promise; declare function reverseGeocode(options: any): Promise; declare function ipGeocode(): Promise; declare function validateAddress(options: any): Promise; declare function getDistance(options: any): Promise; declare function getMatrix(options: any): Promise; declare function logConversion(options: any): Promise; declare function sendEvent(name: any, metadata: any): void; declare function on(event: any, callback: any): void; declare function off(event: any, callback: any): void; declare function nativeSdkVersion(): Promise; declare function rnSdkVersion(): string; declare function throwOnUnimplemented(value: any): void; declare function setDeviceId(deviceId: any, installId: any): void; declare function setDeviceType(deviceType: any): void; declare function setRequestHeaders(headers: any): void;