import { BasicTarget } from "../utils"; interface EventListenerOptions { capture?: boolean; once?: boolean; passive?: boolean; } declare const useEventListener: (target: BasicTarget, eventName: string, handler: (e: Event) => void, options?: EventListenerOptions) => void; export default useEventListener;