/**
 * @param bounds
 * @return
 */
export function center(bounds: Rect): Point;

/**
 * @param a
 * @param b
 * @return
 */
export function delta(a: Point, b: Point): Point;

type Point = import("./Types.js").Point;
type Rect = import("./Types.js").Rect;