import { Base, Type } from "./type";
import { INativeUIWindowBridge } from "./INativeUIWindowBridge";
import { NativeUIBuiltInEvents } from "./NativeUIBuiltInEvents";
/**
 * @hidden
 */
export declare class DOMWindowBridge extends Base implements INativeUIWindowBridge {
    static $t: Type;
    private b;
    private a;
    addEventListener(a: NativeUIBuiltInEvents, b: (arg1: any) => void): void;
    addEventListener1(a: NativeUIBuiltInEvents, b: (arg1: any) => void, c: any): void;
    getHeight(): number;
    getHeight1(a: any): number;
    getWidth(): number;
    getWidth1(a: any): number;
    removeEventListener(a: NativeUIBuiltInEvents, b: (arg1: any) => void): void;
    private d;
    private c;
}
