import { PlaneGraphics as CesiumPlaneGraphics } from 'cesium'; import { PickCesiumProps, Merge } from '../core'; export type Target = Merge; export type PlaneGraphicsCesiumProps = PickCesiumProps; export type PlaneGraphicsCesiumEvents = { onDefinitionChange?: () => void; }; export type PlaneGraphicsProps = PlaneGraphicsCesiumProps & PlaneGraphicsCesiumEvents; declare const cesiumProps: readonly ["plane", "dimensions", "show", "fill", "material", "outline", "outlineColor", "outlineWidth", "shadows", "distanceDisplayCondition"]; export declare const cesiumEventProps: { readonly onDefinitionChange: "definitionChanged"; }; declare const PlaneGraphics: import('..').CesiumComponentType; export default PlaneGraphics;