export declare class DOMEventHandlerUtil { static store: Map; static on(element: HTMLElement, selector: string, eventName: string, callBack: any): string; static off(element: HTMLElement, eventName: string, eventId: string): void; static one(element: HTMLElement, eventName: string, callBack: Function): void; }