import { RefObject } from 'react';

declare const useOutsideClick: ({ popup, ref, refContainButton, }: {
    popup: boolean;
    ref: RefObject<HTMLElement>;
    refContainButton?: boolean;
}, callback?: () => void) => void;
export default useOutsideClick;
