type Action = (...payload: any[]) => void; export declare const useEventBus: () => { on: (key: string, action: Action) => void; once: (key: string, action: Action) => void; off: (key: string, action?: Action) => void; emit: (key: string, ...args: any[]) => void; }; export {};