import { type Rect } from './Rect'; export type Point = { x: number; y: number; }; export declare function isInsideRect(point: Point, rect: Rect): boolean; export declare function getPointLength(point: Point): number; export declare function getDistanceFromRect(point: Point, rect: Rect): Point;