import { LabelGraphics as CesiumLabelGraphics } from 'cesium'; import { PickCesiumProps, Merge } from '../core'; export type LabelGraphicsCesiumProps = PickCesiumProps, typeof cesiumProps>; export type LabelGraphicsCesiumEvents = { onDefinitionChange?: () => void; }; export type LabelGraphicsProps = LabelGraphicsCesiumProps & LabelGraphicsCesiumEvents; declare const cesiumProps: readonly ["text", "font", "style", "fillColor", "outlineColor", "outlineWidth", "show", "showBackground", "backgroundColor", "backgroundPadding", "scale", "horizontalOrigin", "verticalOrigin", "eyeOffset", "pixelOffset", "translucencyByDistance", "pixelOffsetScaleByDistance", "scaleByDistance", "heightReference", "distanceDisplayCondition", "disableDepthTestDistance"]; export declare const cesiumEventProps: { readonly onDefinitionChange: "definitionChanged"; }; declare const LabelGraphics: import('..').CesiumComponentType; export default LabelGraphics;