import { BufferPolygonMaterial, TypedArray, BufferPolygon as CesiumBufferPolygon } from 'cesium'; export type BufferPolygonProps = { /** The vertex positions of the polygon as a typed array. */ positions?: TypedArray; /** The hole indices of the polygon as a typed array. */ holes?: TypedArray; /** The triangle indices of the polygon as a typed array. */ triangles?: TypedArray; /** The material for the polygon. */ material?: BufferPolygonMaterial; /** Whether the polygon is visible. */ show?: boolean; /** A feature identifier for picking. */ featureId?: number; }; declare const BufferPolygon: import('..').CesiumComponentType; export default BufferPolygon;