import { NativeUIBuiltInEvents } from "./NativeUIBuiltInEvents";
import { Type } from "./type";
/**
 * @hidden
 */
export interface INativeUIWindowBridge {
    addEventListener(a: NativeUIBuiltInEvents, b: (arg1: any) => void): void;
    addEventListener1(a: NativeUIBuiltInEvents, b: (arg1: any) => void, c: any): void;
    removeEventListener(a: NativeUIBuiltInEvents, b: (arg1: any) => void): void;
    getWidth(): number;
    getWidth1(a: any): number;
    getHeight(): number;
    getHeight1(a: any): number;
}
/**
 * @hidden
 */
export declare let INativeUIWindowBridge_$type: Type;
