export type Selector = HTMLElement | HTMLCollection | NodeList | HTMLInputElement;
export type Options = {
removeListener: boolean;
};
export type Callback = (state: boolean | null) => void;
export declare function useClickOutside(selector: Selector, callback: Callback, options?: Options): EventListener;