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