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