import type { RefObject } from 'react'; /** * Hook to verify if the user clicked outside the element. * @param elements - array of ref elements * @param cb - the callback to call when the user clicked outside * @public */ export declare function useOutsideClick(elements: RefObject[], cb: (e: MouseEvent) => void): void; //# sourceMappingURL=useOutsideClick.d.ts.map