interface DelegateOptions { target?: EventTarget; useCapture?: boolean; } export declare const useDelegateListen: (selector: string, type: string, callback: (e: Event) => void, options?: DelegateOptions) => void; export {};