import { Event } from "../event/Event"; /** * Describes a method that is used as an event listener call, optionally receiving the event data * as the parameter. */ export declare type EventListener = { /** * @param event Optional parameter for receiving Event data passed by the event dispatch. */ (event?: E): void; };