import { type MouseEvent } from "react"; /** * When managing custom combinations of nested interactive elements * avoid double click handling in the container with: * if (isClickInInteractiveDescendant(e)) return; * @warning Has false negatives with portals */ export declare function isClickInInteractiveDescendant(e: MouseEvent): boolean;