import { Bounds, Hierarchy, Key } from "../../ept"; import { BoundingVolume } from "../bounding-volume"; export declare namespace Tile { type TranslateOptions = { bounds: Bounds; code: string; hierarchy: Hierarchy; key: Key; geometricError: number; }; type Content = { uri: string; }; } export declare type Tile = { content: Tile.Content; children?: Tile[]; boundingVolume: BoundingVolume; geometricError: number; refine?: 'ADD' | 'REPLACE'; }; export declare const Tile: { translate: typeof translate; }; declare function translate({ bounds, code, hierarchy, key, geometricError, }: Tile.TranslateOptions): Tile; export {}; //# sourceMappingURL=tile.d.ts.map