import { RectangleGraphics as CesiumRectangleGraphics } from 'cesium'; import { PickCesiumProps, Merge } from '../core'; export type Target = Merge; export type RectangleGraphicsCesiumProps = PickCesiumProps; export type RectangleGraphicsCesiumEvents = { onDefinitionChange?: () => void; }; export type RectangleGraphicsProps = RectangleGraphicsCesiumProps & RectangleGraphicsCesiumEvents; declare const cesiumProps: readonly ["classificationType", "coordinates", "height", "heightReference", "extrudedHeight", "extrudedHeightReference", "show", "fill", "material", "outline", "outlineColor", "outlineWidth", "rotation", "stRotation", "granularity", "shadows", "distanceDisplayCondition", "zIndex"]; export declare const cesiumEventProps: { readonly onDefinitionChange: "definitionChanged"; }; declare const RectangleGraphics: import('..').CesiumComponentType; export default RectangleGraphics;