import { Point2D } from '../../Point2D';
/**
 * 判断多边形顶点顺序是否为顺时针
 * @param poly 多边形顶点
 */
export declare function isClockwise(poly: Point2D[]): boolean;
