import { PrimitiveCollection } from 'cesium'; import { ReactNode } from 'react'; import { PickCesiumProps } from '../core'; export type GroundPrimitiveCollectionCesiumProps = PickCesiumProps; export type GroundPrimitiveCollectionOtherProps = { children?: ReactNode; }; export type GroundPrimitiveCollectionProps = GroundPrimitiveCollectionCesiumProps & GroundPrimitiveCollectionOtherProps; declare const cesiumProps: readonly ["show", "destroyPrimitives", "primitiveAdded", "primitiveRemoved"]; declare const GroundPrimitiveCollection: import('..').CesiumComponentType; export default GroundPrimitiveCollection;