import { EventDispatcher } from "@thegraid/easeljs-module"; /** for those cases where you need an EventDispatcher, but don't need to be an EventDispatcher */ export declare class Dispatcher extends EventDispatcher { static dispatcher: Dispatcher; /** makes it easier to identify each 'on' listener when debugging. */ namedOn(Aname: string, type: string, listener: (eventObj: any) => boolean, scope?: Object, once?: boolean, data?: any, useCapture?: boolean): void; }