/** * Handles clicks that occur outside of the component. * @param {HTMLElement} node - Reference to the component element. * @param {func} handler - The function that is executed when the user clicks outside of the component. */ declare const useOutsideClick: (node: HTMLElement | null, handler: (event: MouseEvent) => void) => void; export default useOutsideClick; //# sourceMappingURL=useOutsideClick.d.ts.map