declare type FuncSend = (topic: string, data: any, target?: "other" | "current" | "all") => void; declare type FuncCallback = (data: any) => void; declare var hermes: { on: (topic: string, callback: FuncCallback) => void; off: (topic: string, callback?: FuncCallback | undefined) => void; send: FuncSend; }; export default hermes; //# sourceMappingURL=hermes.d.ts.map