import { Controller } from "@hotwired/stimulus";
export declare function useEventBus(controller: Controller, eventNameOrNames: string | string[], handler: (...args: any[]) => void, opts?: {
    debounce?: number;
}): {
    setup: () => void;
    teardown: () => void;
};
