import { EventListBase } from "ste-core"; import { EventDispatcher } from "./EventDispatcher"; /** * Storage class for multiple events that are accessible by name. * Events dispatchers are automatically created. */ export declare class EventList extends EventListBase> { /** * Creates a new EventList instance. */ constructor(); /** * Creates a new dispatcher instance. */ protected createDispatcher(): EventDispatcher; }