import { Extent } from "./Extent"; import { BoundingVolume } from "./BoundingVolume"; import { Link } from "./Link"; export declare class _3DContainer { id: string; title?: string; description?: string; collectionType?: string; itemType?: string; extent: Extent; contentExtent?: BoundingVolume; crs?: string[]; links: Link[]; children?: _3DContainer[]; content?: Link[]; static fromJson(jsonObj: any): _3DContainer; }