import { InterstitialAdsModule } from "../interfaces/InterstitialAdsModule"; import { NativeModule } from "../managers/NativeModuleHelper"; export declare class InterstitialAdsModuleImpl extends NativeModule implements InterstitialAdsModule { loadAd(adUnitId: string): Promise; showAd(adUnitId: string): Promise; isAdSupported(): Promise; isAdLoaded(adUnitId: string): Promise; releaseAd(adUnitId: string): Promise; private executeOnBridge; }