import Point from '~/interfaces/Point'; import Rect from '~/interfaces/Rect'; /** * Determines whether a point lies inside a rectangle (inclusive of edges). * * Used to detect whether a click event occurred within the bounds of * a UI element such as the zoom menu. * * @param point - The point to test. * @param rect - The bounding rectangle to test against. * @returns `true` if {@link point} is inside {@link rect}, `false` otherwise. */ declare const _default: (point: Point, rect: Rect) => boolean; export default _default;