import { RefObject } from 'react';
interface Options {
    ref: RefObject<HTMLElement>;
    callback: () => void;
}
declare const useOutsideClick: (options: Options) => void;
export default useOutsideClick;
