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