import { Event } from "../events/Event";
/**
 * <code>UIEvent</code> 类用来定义UI组件类的事件类型。
 */
export declare class UIEvent extends Event {
    /**
     * 显示提示信息。
     */
    static SHOW_TIP: string;
    /**
     * 隐藏提示信息。
     */
    static HIDE_TIP: string;
}
