import { Platform, WebToNativeInterface, WebToNativeIosInterface, CallbackFunction, RegisterCallbackOptions } from './types'; declare const isClient: boolean; declare const webToNative: WebToNativeInterface; declare const webToNativeIos: WebToNativeIosInterface | false; declare const platform: Platform; declare const isNativeApp: boolean; declare const registerCb: (cb: CallbackFunction, obj?: RegisterCallbackOptions) => void; declare const registerForAbMobCb: (cb: CallbackFunction) => void; declare const deRegisterForAbMobCb: () => void; declare const deRegisterCbByKey: (key: string | number) => void; export { webToNative, isClient, webToNativeIos, platform, isNativeApp, registerCb, registerForAbMobCb, deRegisterForAbMobCb, deRegisterCbByKey, };