import { AEvent } from "./AEvent";
export declare class TextEvent extends AEvent {
    static LINK: string;
    static TEXT_INPUT: string;
    private m_text;
    constructor(type: string, bubbles?: boolean, cancelable?: boolean, text?: string);
    get text(): string;
    set text(value: string);
    clone(): AEvent;
    toString(): string;
    private copyNativeData;
}
