export * from "./mws"; export declare class EventBus { readonly create: (type: string, callBack: (data: any) => any) => void; readonly arrival: (type: string, data?: any) => void; readonly remove: (type?: string, callback?: cbk) => void; constructor(); private readonly hs; private _create; private _arrival; private _remove; }