import { Cartesian3 } from 'cesium'; import { Category, CesiumTypes, PolylineStyle, Viewer } from '../type'; import { default as Basic } from '../bastic'; export declare class CurvedLineArrow extends Basic { points: Cartesian3[]; arrowLengthScale: number; maxArrowLength: number; t: number; minPointsForShape: number; constructor(cesium: CesiumTypes, viewer: Viewer, style?: PolylineStyle); getCategory(): Category; addPoint(cartesian: Cartesian3): void; updateMovingPoint(cartesian: Cartesian3): void; createStraightArrow(positions: Cartesian3[]): Cartesian3[]; updateDraggingPoint(cartesian: Cartesian3, index: number): void; createGraphic(positions: Cartesian3[]): Cartesian3[]; getPoints(): Cartesian3[]; }