import { MobileAd, MobileAdOptions } from './shared'; declare type ShowOptions = { x: number; y: number; width: number; height: number; }; export interface NativeAdOptions extends MobileAdOptions { view?: string; } export default class NativeAd extends MobileAd { static cls: string; isLoaded(): Promise; hide(): Promise; load(): Promise; show(opts?: ShowOptions): Promise; showWith(elm: HTMLElement): Promise; } export {};