/** * Determines if a click's coordinates are within the bounds of a node. * * @see https://github.com/Semantic-Org/Semantic-UI-React/pull/2384 * * @param node - A DOM node. * @param e - A SyntheticEvent or DOM Event. * @param target - A target document. */ export declare const doesNodeContainClick: (node: HTMLElement, e: MouseEvent, target?: Document) => boolean;