import { RefObject } from "react"; /** * Hook that alerts clicks outside the passed ref */ export declare function useOutsideAlerter(ref: RefObject, onOutsideClick: () => void, active?: boolean): void;