import { PolylineCollection as CesiumPolylineCollection } from 'cesium'; import { ReactNode } from 'react'; import { PickCesiumProps } from '../core'; export type PolylineCollectionCesiumProps = PickCesiumProps; export type PolylineCollectionOtherProps = { children?: ReactNode; }; export type PolylineCollectionProps = PolylineCollectionCesiumProps & PolylineCollectionOtherProps; declare const cesiumProps: readonly ["debugShowBoundingVolume", "length", "modelMatrix", "show"]; declare const PolylineCollection: import('..').CesiumComponentType; export default PolylineCollection;