import { Event } from "./Event"; export declare class TextEvent extends Event { static LINK: string; static TEXT_INPUT: string; static NETWORK_ERROR: string; static VERIFY_ERROR: string; constructor(type: string, bubbles?: boolean, cancelable?: boolean, text?: string); text: string; clone(): Event; toString(): string; }