export interface InterstitialAdsModule { isAdSupported(): Promise; loadAd(adUnitId: string): Promise; showAd(adUnitId: string): Promise; isAdLoaded(adUnitId: string): Promise; releaseAd(adUnitId: string): Promise; }