import { Point } from '../Point';
/**
 * 求两点的中心，返回一个新对象
 * @param a 点a
 * @param b 点b
 */
export declare function centerTo(a: Point, b: Point): Point;
