import { GeometryType, Geometry, Point, LineString } from "./internal"; /** * A LineString that is both closed and simple. */ export declare class LinearRing extends LineString { constructor(); constructor(lineString: LineString); constructor(points: Array); constructor(hasZ: boolean, hasM: boolean); constructor(type: GeometryType, hasZ: boolean, hasM: boolean); /** * {@inheritDoc} */ set points(points: Array); /** * {@inheritDoc} */ copy(): Geometry; }