import type { EventSubscription } from "react-native"; import type { RadarNativeInterface } from "./@types/RadarNativeInterface"; declare const NativeRadar: import("./NativeRadar").Spec; type Events = "locationEmitter" | "clientLocationEmitter" | "errorEmitter" | "logEmitter" | "eventsEmitter" | "tokenEmitter" | "newInAppMessageEmitter" | "inAppMessageDismissedEmitter" | "inAppMessageClickedEmitter"; export declare function addListener(event: EventT, handler: Parameters<(typeof NativeRadar)[EventT]>[0]): EventSubscription; declare const Radar: RadarNativeInterface; export default Radar;