import type { Types } from '@cornerstonejs/core'; type Point = Types.Point2 | Types.Point3; export default function distanceToPointSquared(p1: Point, p2: Point): number; export {};