import { LabelCollection as CesiumLabelCollection } from 'cesium'; import { ReactNode } from 'react'; import { PickCesiumProps } from '../core'; export type LabelCollectionCesiumProps = PickCesiumProps; export type LabelCollectionOtherProps = { children?: ReactNode; }; export type LabelCollectionProps = LabelCollectionCesiumProps & LabelCollectionOtherProps; declare const cesiumProps: readonly ["blendOption", "coarseDepthTestDistance", "debugShowBoundingVolume", "modelMatrix", "show", "threePointDepthTestDistance"]; declare const LabelCollection: import('..').CesiumComponentType; export default LabelCollection;