import { MobileAd, MobileAdOptions } from './shared'; declare enum AppOpenAdOrientation { Portrait = 1, PortraitUpsideDown = 2, LandscapeRight = 3, LandscapeLeft = 4 } export default class AppOpenAd extends MobileAd { static cls: string; static readonly Orientation: typeof AppOpenAdOrientation; isLoaded(): Promise; load(): Promise; show(): Promise; } export {};