import { Label as CesiumLabel, LabelCollection } from 'cesium'; import { EventProps, PickCesiumProps } from '../core'; export type LabelCesiumProps = PickCesiumProps; export type LabelOtherProps = EventProps<{ collection: LabelCollection; primitive: CesiumLabel; }>; export type LabelProps = LabelCesiumProps & LabelOtherProps; declare const cesiumProps: readonly ["backgroundColor", "backgroundPadding", "disableDepthTestDistance", "distanceDisplayCondition", "eyeOffset", "fillColor", "font", "heightReference", "horizontalOrigin", "id", "outlineColor", "outlineWidth", "pixelOffset", "pixelOffsetScaleByDistance", "position", "scale", "scaleByDistance", "show", "showBackground", "style", "text", "translucencyByDistance", "verticalOrigin"]; declare const Label: import('..').CesiumComponentType; export default Label;