import React from "react";
type propsDefined = {
    navigation?: any;
    route?: any;
    style?: any;
    ImageHeight?: number;
    customAdData?: Array<any>;
    adImageResize?: string;
};
/**
    // 示例：替换AdBanner组件
   import { BannerAd, BannerAdSize } from 'react-native-google-mobile-ads';
   
   const AdBanner = () => {
     return (
       <BannerAd
         unitId={Platform.select({
           android: 'ca-app-pub-xxx/xxx',
           ios: 'ca-app-pub-xxx/xxx',
         })}
         size={BannerAdSize.BANNER}
       />
     );
   };
   
 */
/**
 * 【基础组件】随机广告组件（可配置广告的位置、样式、图片、文字、链接）
 */
declare const YhwAdRandomRN: ({ navigation, route, style, ImageHeight, customAdData, adImageResize, }: propsDefined) => React.JSX.Element;
export default YhwAdRandomRN;
