export interface Point {
    x: number;
    y: number;
}
/** Lightweight representation of a Polygon as a series of points. */
export declare type PolyPoints = Point[];
//# sourceMappingURL=common-types.d.ts.map