export declare class Event { private _cache; constructor(); on(type: string, callback: Function): Event; trigger(type: string, data?: unknown): Event; off(type: string, callback: Function): Event; }