export declare class EventDispatcher { events: string[]; add(event: string): void; contains(event: string): boolean; reset(): void; }