import { RefObject } from 'react';
type Event = MouseEvent | TouchEvent;
export declare const useOnClickOutside: <T extends HTMLElement = HTMLElement>(ref: RefObject<T | null>, handler: (event: Event) => void) => void;
export {};
