export type PlacementId = string; export type JsonSerializable = string | number | boolean | null | undefined | JsonSerializable[] | { [key: string]: JsonSerializable; }; export type BannerPosition = 'top' | 'bottom'; export interface BannerRectangle { x?: number; y?: number; width?: number; height?: number; usesPixel?: boolean; [key: string]: JsonSerializable; } export interface RewardedVideoSettings { userID?: string; media_ext?: string; [key: string]: JsonSerializable; } export interface InterstitialSettings { UseRewardedVideoAsInterstitial?: boolean; [key: string]: JsonSerializable; } export interface BannerSettings extends BannerRectangle { adaptive_type?: number; adaptive_orientation?: number; adaptive_width?: number; banner_ad_size_struct?: BannerRectangle; [key: string]: JsonSerializable; } export interface SplashSettings { tolerateTimeout?: number; [key: string]: JsonSerializable; } export interface NativeAdSettings { width?: number; height?: number; adaptive_height?: boolean; usesPixel?: boolean; [key: string]: JsonSerializable; } export interface NativeAdViewRefs { parent: number; icon?: number; mainImage?: number; title?: number; desc?: number; adLogo?: number; cta?: number; dislike?: number; [key: string]: JsonSerializable; } export interface ToponAdStatus { isLoading: boolean; isReady: boolean; adInfo?: string; } export interface ToponErrorPayload { placementId: string; errorMsg: string; } export interface ToponAdInfoPayload { placementId: string; adCallbackInfo?: string; } export interface ToponNativeAdPayload extends ToponAdInfoPayload { adMaterial?: string; } export interface GDPRConsentDismissInfo { gdprLevel: number; raw?: string; fallback?: boolean; } export type ToponRewardedEventPayload = ToponAdInfoPayload | ToponErrorPayload | { placementId: string; }; export type ToponInterstitialEventPayload = ToponRewardedEventPayload; export type ToponBannerEventPayload = ToponRewardedEventPayload; export type ToponSplashEventPayload = ToponRewardedEventPayload; export type ToponNativeEventPayload = ToponNativeAdPayload | ToponErrorPayload; export declare const PERSONALIZED: 0; export declare const NONPERSONALIZED: 1; export declare const UNKNOWN: 2; export declare const kATUserLocationInEU: 1; export declare const OS_VERSION_NAME: "os_vn"; export declare const OS_VERSION_CODE: "os_vc"; export declare const APP_PACKAGE_NAME: "package_name"; export declare const APP_VERSION_NAME: "app_vn"; export declare const APP_VERSION_CODE: "app_vc"; export declare const BRAND: "brand"; export declare const MODEL: "model"; export declare const DEVICE_SCREEN_SIZE: "screen"; export declare const MNC: "mnc"; export declare const MCC: "mcc"; export declare const LANGUAGE: "language"; export declare const TIMEZONE: "timezone"; export declare const USER_AGENT: "ua"; export declare const ORIENTATION: "orient"; export declare const NETWORK_TYPE: "network_type"; export declare const INSTALLER: "it_src"; export declare const ANDROID_ID: "android_id"; export declare const GAID: "gaid"; export declare const MAC: "mac"; export declare const IMEI: "imei"; export declare const OAID: "oaid"; export declare const IDFA: "idfa"; export declare const IDFV: "idfv"; export declare const UseRewardedVideoAsInterstitial: "UseRewardedVideoAsInterstitial"; export declare const kATBannerAdLoadingExtraBannerAdSizeStruct: "banner_ad_size_struct"; export declare const kATBannerAdAdaptiveType: "adaptive_type"; export declare const kATBannerAdAdaptiveTypeAnchored: 0; export declare const kATBannerAdAdaptiveTypeInline: 1; export declare const kATBannerAdAdaptiveWidth: "adaptive_width"; export declare const kATBannerAdAdaptiveOrientation: "adaptive_orientation"; export declare const kATBannerAdAdaptiveOrientationCurrent: 0; export declare const kATBannerAdAdaptiveOrientationPortrait: 1; export declare const kATBannerAdAdaptiveOrientationLandscape: 2; export declare const kATBannerAdShowingPositionTop: BannerPosition; export declare const kATBannerAdShowingPositionBottom: BannerPosition; export declare const kATNativeViewKeyParent: "parent"; export declare const kATNativeViewKeyIcon: "icon"; export declare const kATNativeViewKeyMainImage: "mainImage"; export declare const kATNativeViewKeyTitle: "title"; export declare const kATNativeViewKeyDesc: "desc"; export declare const kATNativeViewKeyAdLogo: "adLogo"; export declare const kATNativeViewKeyCta: "cta"; export declare const createLoadAdSize: (width: number, height: number) => BannerRectangle; export declare const createLoadPixelAdSize: (width: number, height: number, usesPixel?: boolean) => BannerRectangle; export declare const createShowAdRect: (x: number, y: number, width: number, height: number) => BannerRectangle; export declare const createShowPixelAdRect: (x: number, y: number, width: number, height: number, usesPixel?: boolean) => BannerRectangle; export declare const SDK: { init: (appId: string, appKey: string) => void; getSDKVersionName: () => Promise; isCnSDK: () => Promise; setExcludeMyOfferPkgList: (packages: string[]) => void; initCustomMap: (customMap: JsonSerializable) => void; setPlacementCustomMap: (placementId: PlacementId, customMap: JsonSerializable) => void; setGDPRLevel: (level: number) => void; getGDPRLevel: () => Promise; getUserLocation: () => Promise; showGDPRAuth: () => void; showGDPRConsentDialog: (appId: string) => Promise; showGDPRConsentSecondDialog: (appId: string) => Promise; setUMPTestDeviceId: (deviceId: string) => void; setLogDebug: (isDebug: boolean) => void; deniedUploadDeviceInfo: (keys: string[]) => void; }; export declare const RewardedVideo: { loadAd: (placementId: PlacementId, settings?: RewardedVideoSettings) => void; showAd: (placementId: PlacementId) => void; showAdInScenario: (placementId: PlacementId, scenario: string) => void; hasAdReady: (placementId: PlacementId) => Promise; checkAdStatus: (placementId: PlacementId) => Promise; }; export declare const Interstitial: { loadAd: (placementId: PlacementId, settings?: InterstitialSettings) => void; showAd: (placementId: PlacementId) => void; showAdInScenario: (placementId: PlacementId, scenario: string) => void; hasAdReady: (placementId: PlacementId) => Promise; checkAdStatus: (placementId: PlacementId) => Promise; }; export declare const Banner: { loadAd: (placementId: PlacementId, settings?: BannerSettings) => void; showAdInRectangle: (placementId: PlacementId, rect: BannerRectangle) => void; showAdInPosition: (placementId: PlacementId, position: BannerPosition) => void; showAdInRectangleAndScenario: (placementId: PlacementId, rect: BannerRectangle, scenario: string) => void; showAdInPositionAndScenario: (placementId: PlacementId, position: BannerPosition, scenario: string) => void; hideAd: (placementId: PlacementId) => void; reShowAd: (placementId: PlacementId) => void; removeAd: (placementId: PlacementId) => void; hasAdReady: (placementId: PlacementId) => Promise; checkAdStatus: (placementId: PlacementId) => Promise; }; export declare const Splash: { loadAd: (placementId: PlacementId, settings?: SplashSettings) => void; showAd: (placementId: PlacementId) => void; showAdInScenario: (placementId: PlacementId, scenario: string) => void; hasAdReady: (placementId: PlacementId) => Promise; checkAdStatus: (placementId: PlacementId) => Promise; }; export declare const Native: { loadAd: (placementId: PlacementId, settings?: NativeAdSettings) => void; showAd: (placementId: PlacementId, viewRefs: JsonSerializable) => void; showAdInScenario: (placementId: PlacementId, viewRefs: JsonSerializable, scenario: string) => void; hasAdReady: (placementId: PlacementId) => Promise; checkAdStatus: (placementId: PlacementId) => Promise; getAdMaterial: (placementId: PlacementId) => Promise; removeAd: (placementId: PlacementId) => void; }; export declare const NativeAdView: import("react-native").HostComponent unknown) | undefined; onAccessibilityTap?: (() => unknown) | undefined; onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined; onMagicTap?: (() => unknown) | undefined; onAccessibilityEscape?: (() => unknown) | undefined; }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit boolean) | undefined; onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined; onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined; onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined; onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined; onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined; }>, "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit void) | undefined; onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined; }>, "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit void) | undefined; onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; }>, "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit void) | undefined; onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined; onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined; onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined; }>, "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit void) | undefined; onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; }>, "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit unknown) | undefined; }>, "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit | undefined); "aria-labelledby"?: string | undefined; accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined; "aria-live"?: ("polite" | "assertive" | "off") | undefined; importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined; screenReaderFocusable?: boolean; }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & { accessible?: boolean | undefined; accessibilityLabel?: string | undefined; accessibilityHint?: string | undefined; "aria-label"?: string | undefined; accessibilityRole?: import("react-native").AccessibilityRole | undefined; role?: import("react-native").Role | undefined; accessibilityState?: import("react-native").AccessibilityState | undefined; accessibilityValue?: import("react-native").AccessibilityValue | undefined; "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined; "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined; "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined; "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined; accessibilityActions?: ReadonlyArray | undefined; "aria-busy"?: boolean | undefined; "aria-checked"?: (boolean | undefined) | "mixed"; "aria-disabled"?: boolean | undefined; "aria-expanded"?: boolean | undefined; "aria-selected"?: boolean | undefined; "aria-hidden"?: boolean | undefined; }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit | undefined; }>, never>>>; export declare const ToponEvents: { RewardedVideo: { readonly Loaded: "ATRewardedVideoLoaded"; readonly LoadFail: "ATRewardedVideoLoadFail"; readonly PlayStart: "ATRewardedVideoPlayStart"; readonly PlayEnd: "ATRewardedVideoPlayEnd"; readonly PlayFail: "ATRewardedVideoPlayFail"; readonly Close: "ATRewardedVideoClose"; readonly Click: "ATRewardedVideoClick"; readonly Reward: "ATRewardedVideoReward"; }; Interstitial: { readonly Loaded: "ATInterstitialLoaded"; readonly LoadFail: "ATInterstitialLoadFail"; readonly PlayStart: "ATInterstitialPlayStart"; readonly PlayEnd: "ATInterstitialPlayEnd"; readonly PlayFail: "ATInterstitialPlayFail"; readonly Close: "ATInterstitialClose"; readonly Click: "ATInterstitialClick"; readonly Show: "ATInterstitialAdShow"; }; Banner: { readonly Loaded: "ATBannerLoaded"; readonly LoadFail: "ATBannerLoadFail"; readonly Close: "ATBannerCloseButtonTapped"; readonly Click: "ATBannerClick"; readonly Show: "ATBannerShow"; readonly Refresh: "ATBannerRefresh"; readonly RefreshFail: "ATBannerRefreshFail"; }; Splash: { readonly Loaded: "ATSplashLoaded"; readonly LoadFail: "ATSplashLoadFail"; readonly Timeout: "ATSplashTimeout"; readonly Show: "ATSplashShow"; readonly Click: "ATSplashClick"; readonly Close: "ATSplashClose"; }; Native: { readonly Loaded: "ATNativeLoaded"; readonly LoadFail: "ATNativeLoadFail"; readonly Show: "ATNativeShow"; readonly Click: "ATNativeClick"; readonly Close: "ATNativeClose"; readonly VideoStart: "ATNativeVideoStart"; readonly VideoEnd: "ATNativeVideoEnd"; readonly VideoProgress: "ATNativeVideoProgress"; }; }; export type RewardedEventName = (typeof ToponEvents.RewardedVideo)[keyof typeof ToponEvents.RewardedVideo]; export type InterstitialEventName = (typeof ToponEvents.Interstitial)[keyof typeof ToponEvents.Interstitial]; export type BannerEventName = (typeof ToponEvents.Banner)[keyof typeof ToponEvents.Banner]; export type SplashEventName = (typeof ToponEvents.Splash)[keyof typeof ToponEvents.Splash]; export type NativeEventName = (typeof ToponEvents.Native)[keyof typeof ToponEvents.Native]; export declare const NativeModule: import("./NativeTopon").Spec; declare const _default: { SDK: { init: (appId: string, appKey: string) => void; getSDKVersionName: () => Promise; isCnSDK: () => Promise; setExcludeMyOfferPkgList: (packages: string[]) => void; initCustomMap: (customMap: JsonSerializable) => void; setPlacementCustomMap: (placementId: PlacementId, customMap: JsonSerializable) => void; setGDPRLevel: (level: number) => void; getGDPRLevel: () => Promise; getUserLocation: () => Promise; showGDPRAuth: () => void; showGDPRConsentDialog: (appId: string) => Promise; showGDPRConsentSecondDialog: (appId: string) => Promise; setUMPTestDeviceId: (deviceId: string) => void; setLogDebug: (isDebug: boolean) => void; deniedUploadDeviceInfo: (keys: string[]) => void; }; RewardedVideo: { loadAd: (placementId: PlacementId, settings?: RewardedVideoSettings) => void; showAd: (placementId: PlacementId) => void; showAdInScenario: (placementId: PlacementId, scenario: string) => void; hasAdReady: (placementId: PlacementId) => Promise; checkAdStatus: (placementId: PlacementId) => Promise; }; Interstitial: { loadAd: (placementId: PlacementId, settings?: InterstitialSettings) => void; showAd: (placementId: PlacementId) => void; showAdInScenario: (placementId: PlacementId, scenario: string) => void; hasAdReady: (placementId: PlacementId) => Promise; checkAdStatus: (placementId: PlacementId) => Promise; }; Banner: { loadAd: (placementId: PlacementId, settings?: BannerSettings) => void; showAdInRectangle: (placementId: PlacementId, rect: BannerRectangle) => void; showAdInPosition: (placementId: PlacementId, position: BannerPosition) => void; showAdInRectangleAndScenario: (placementId: PlacementId, rect: BannerRectangle, scenario: string) => void; showAdInPositionAndScenario: (placementId: PlacementId, position: BannerPosition, scenario: string) => void; hideAd: (placementId: PlacementId) => void; reShowAd: (placementId: PlacementId) => void; removeAd: (placementId: PlacementId) => void; hasAdReady: (placementId: PlacementId) => Promise; checkAdStatus: (placementId: PlacementId) => Promise; }; Splash: { loadAd: (placementId: PlacementId, settings?: SplashSettings) => void; showAd: (placementId: PlacementId) => void; showAdInScenario: (placementId: PlacementId, scenario: string) => void; hasAdReady: (placementId: PlacementId) => Promise; checkAdStatus: (placementId: PlacementId) => Promise; }; Native: { loadAd: (placementId: PlacementId, settings?: NativeAdSettings) => void; showAd: (placementId: PlacementId, viewRefs: JsonSerializable) => void; showAdInScenario: (placementId: PlacementId, viewRefs: JsonSerializable, scenario: string) => void; hasAdReady: (placementId: PlacementId) => Promise; checkAdStatus: (placementId: PlacementId) => Promise; getAdMaterial: (placementId: PlacementId) => Promise; removeAd: (placementId: PlacementId) => void; }; NativeAdView: import("react-native").HostComponent unknown) | undefined; onAccessibilityTap?: (() => unknown) | undefined; onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined; onMagicTap?: (() => unknown) | undefined; onAccessibilityEscape?: (() => unknown) | undefined; }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit boolean) | undefined; onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined; onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined; onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined; onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined; onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined; }>, "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit void) | undefined; onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined; }>, "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit void) | undefined; onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined; onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined; onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined; }>, "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit void) | undefined; onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined; onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined; onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined; }>, "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit void) | undefined; onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined; }>, "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit unknown) | undefined; }>, "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit | undefined); "aria-labelledby"?: string | undefined; accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined; "aria-live"?: ("polite" | "assertive" | "off") | undefined; importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined; screenReaderFocusable?: boolean; }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & { accessible?: boolean | undefined; accessibilityLabel?: string | undefined; accessibilityHint?: string | undefined; "aria-label"?: string | undefined; accessibilityRole?: import("react-native").AccessibilityRole | undefined; role?: import("react-native").Role | undefined; accessibilityState?: import("react-native").AccessibilityState | undefined; accessibilityValue?: import("react-native").AccessibilityValue | undefined; "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined; "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined; "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined; "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined; accessibilityActions?: ReadonlyArray | undefined; "aria-busy"?: boolean | undefined; "aria-checked"?: (boolean | undefined) | "mixed"; "aria-disabled"?: boolean | undefined; "aria-expanded"?: boolean | undefined; "aria-selected"?: boolean | undefined; "aria-hidden"?: boolean | undefined; }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit | undefined; }>, never>>>; Events: { RewardedVideo: { readonly Loaded: "ATRewardedVideoLoaded"; readonly LoadFail: "ATRewardedVideoLoadFail"; readonly PlayStart: "ATRewardedVideoPlayStart"; readonly PlayEnd: "ATRewardedVideoPlayEnd"; readonly PlayFail: "ATRewardedVideoPlayFail"; readonly Close: "ATRewardedVideoClose"; readonly Click: "ATRewardedVideoClick"; readonly Reward: "ATRewardedVideoReward"; }; Interstitial: { readonly Loaded: "ATInterstitialLoaded"; readonly LoadFail: "ATInterstitialLoadFail"; readonly PlayStart: "ATInterstitialPlayStart"; readonly PlayEnd: "ATInterstitialPlayEnd"; readonly PlayFail: "ATInterstitialPlayFail"; readonly Close: "ATInterstitialClose"; readonly Click: "ATInterstitialClick"; readonly Show: "ATInterstitialAdShow"; }; Banner: { readonly Loaded: "ATBannerLoaded"; readonly LoadFail: "ATBannerLoadFail"; readonly Close: "ATBannerCloseButtonTapped"; readonly Click: "ATBannerClick"; readonly Show: "ATBannerShow"; readonly Refresh: "ATBannerRefresh"; readonly RefreshFail: "ATBannerRefreshFail"; }; Splash: { readonly Loaded: "ATSplashLoaded"; readonly LoadFail: "ATSplashLoadFail"; readonly Timeout: "ATSplashTimeout"; readonly Show: "ATSplashShow"; readonly Click: "ATSplashClick"; readonly Close: "ATSplashClose"; }; Native: { readonly Loaded: "ATNativeLoaded"; readonly LoadFail: "ATNativeLoadFail"; readonly Show: "ATNativeShow"; readonly Click: "ATNativeClick"; readonly Close: "ATNativeClose"; readonly VideoStart: "ATNativeVideoStart"; readonly VideoEnd: "ATNativeVideoEnd"; readonly VideoProgress: "ATNativeVideoProgress"; }; }; NativeModule: import("./NativeTopon").Spec; }; export default _default; //# sourceMappingURL=index.d.ts.map