export declare class HtCustomEvent { private topics; private hOP; next(topic: string, info: any): void; subscribe(topic: string, listener: (...args: any[]) => void): IEventSub; } export interface IEventSub { unsubscribe: () => void; }