import { Point } from './common.js'; declare const getUnitVectorFromPointAToB: (a: Point, b: Point) => Point; declare const getUnitVectorFromDirection: (direction: "up" | "down" | "left" | "right") => Point; export { getUnitVectorFromDirection, getUnitVectorFromPointAToB };