import { NativeUIElementBridge } from "./NativeUIElementBridge";
import { INativeUIInputBridge } from "./INativeUIInputBridge";
import { Type } from "./type";
import { NativeUIComponent } from "./NativeUIComponent";
import { NativeUIBuiltInEvents } from "./NativeUIBuiltInEvents";
import { NativeUIBuiltInProperties } from "./NativeUIBuiltInProperties";
/**
 * @hidden
 */
export declare class IgcInputBridge extends NativeUIElementBridge implements INativeUIInputBridge {
    static $t: Type;
    private t;
    private s;
    private u;
    addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
    private v;
    getValue(a: any, b: NativeUIBuiltInProperties): any;
    removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
    setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
    select(a: any): void;
    setSelectionRange(a: any, b: number, c: number): void;
    resetIsExpanded(a: any): void;
}
