import { BillboardCollection as CesiumBillboardCollection } from 'cesium'; import { ReactNode } from 'react'; import { PickCesiumProps } from '../core'; export type BillboardCollectionCesiumProps = PickCesiumProps; export type BillboardCollectionOtherProps = { children?: ReactNode; }; export type BillboardCollectionProps = BillboardCollectionCesiumProps & BillboardCollectionOtherProps; declare const cesiumProps: readonly ["blendOption", "coarseDepthTestDistance", "debugShowBoundingVolume", "debugShowTextureAtlas", "modelMatrix", "show", "threePointDepthTestDistance"]; declare const BillboardCollection: import('..').CesiumComponentType; export default BillboardCollection;