import { PathGraphics as CesiumPathGraphics } from 'cesium'; import { PickCesiumProps, Merge } from '../core'; export type Target = Merge; export type PathGraphicsCesiumProps = PickCesiumProps, typeof cesiumProps>; export type PathGraphicsCesiumEvents = { onDefinitionChange?: () => void; }; export type PathGraphicsProps = PathGraphicsCesiumProps & PathGraphicsCesiumEvents; declare const cesiumProps: readonly ["leadTime", "trailTime", "show", "width", "material", "materialMode", "resolution", "distanceDisplayCondition", "relativeTo"]; export declare const cesiumEventProps: { readonly onDefinitionChange: "definitionChanged"; }; declare const PathGraphics: import('..').CesiumComponentType; export default PathGraphics;