import Event, { EventCallback } from "./Event";
interface IListenable {
    trigger(event: string | Event, ...any: any[]): any;
    on(type: string | string[], callback: EventCallback): any;
}
export default IListenable;
