import { ModelGraphics as CesiumModelGraphics } from 'cesium'; import { PickCesiumProps, Merge } from '../core'; export type Target = Merge; export type ModelGraphicsCesiumProps = PickCesiumProps; export type ModelGraphicsCesiumEvents = { onDefinitionChange?: () => void; }; export type ModelGraphicsProps = ModelGraphicsCesiumProps & ModelGraphicsCesiumEvents; declare const cesiumProps: readonly ["uri", "show", "scale", "minimumPixelSize", "maximumScale", "incrementallyLoadTextures", "runAnimations", "clampAnimations", "nodeTransformations", "shadows", "heightReference", "distanceDisplayCondition", "silhouetteColor", "silhouetteSize", "color", "colorBlendMode", "colorBlendAmount", "clippingPlanes", "imageBasedLightingFactor", "lightColor", "articulations", "customShader", "enableVerticalExaggeration", "environmentMapOptions"]; export declare const cesiumEventProps: { readonly onDefinitionChange: "definitionChanged"; }; declare const ModelGraphics: import('..').CesiumComponentType; export default ModelGraphics;