import { NativeUIComponent } from "./NativeUIComponent";
import { NativeUIComponentBuiltInType } from "./NativeUIComponentBuiltInType";
import { NativeUIDisplayDensity } from "./NativeUIDisplayDensity";
import { Type } from "./type";
import { NativeUIButtonClickedEventArgs } from "./NativeUIButtonClickedEventArgs";
/**
 * @hidden
 */
export declare class NativeUIButton extends NativeUIComponent {
    static $t: Type;
    protected get_c(): NativeUIComponentBuiltInType;
    get av(): NativeUIDisplayDensity;
    set av(a: NativeUIDisplayDensity);
    get aw(): string;
    set aw(a: string);
    private at;
    get au(): (sender: any, args: NativeUIButtonClickedEventArgs) => void;
    set au(a: (sender: any, args: NativeUIButtonClickedEventArgs) => void);
}
