import { Point } from '../Point';
/**
 * 减法，返回一个新对象
 * @param a 点a
 * @param b 点b
 */
export declare function subtractTo(a: Point, b: Point): Point;
