import { type DependencyList } from "react";
import type { IEventBus, TEventBusListener } from "./types";
export declare const useEventBus: <T extends IEventBus>(topic: T["topic"], listener: TEventBusListener<T["message"]>, deps?: DependencyList) => void;
