import { NativeUIElementBridge } from "./NativeUIElementBridge";
import { Type } from "./type";
import { NativeUIComponent } from "./NativeUIComponent";
import { NativeUIBuiltInEvents } from "./NativeUIBuiltInEvents";
import { NativeUIBuiltInProperties } from "./NativeUIBuiltInProperties";
/**
 * @hidden
 */
export declare class SpanBridge extends NativeUIElementBridge {
    static $t: Type;
    addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
    getValue(a: any, b: NativeUIBuiltInProperties): any;
    removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
    setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
    exportVisualData(a: any): any;
}
