import { Point } from '../Point';
/**
 * 获取两点之间的距离
 * @param a 点a
 * @param b 点b
 */
export declare function distanceTo(a: Point, b: Point): number;
