/** @packageDocumentation * @module OrbitGT */ import { Bounds } from "../../spatial/geom/Bounds"; import { TileIndex } from "./TileIndex"; /** * Abstract class PointData stores the data of the points in a tile. */ /** @internal */ export declare class PointData { tileIndex: TileIndex; bounds: Bounds; /** * Create new point data. */ constructor(tileIndex: TileIndex, bounds: Bounds); } //# sourceMappingURL=PointData.d.ts.map