import { BufferPolylineMaterial, TypedArray, BufferPolyline as CesiumBufferPolyline } from 'cesium'; export type BufferPolylineProps = { /** The vertex positions of the polyline as a typed array. */ positions?: TypedArray; /** The material (color, outline, width) for the polyline. */ material?: BufferPolylineMaterial; /** Whether the polyline is visible. */ show?: boolean; /** A feature identifier for picking. */ featureId?: number; }; declare const BufferPolyline: import('..').CesiumComponentType; export default BufferPolyline;