/// import Draw from "./index"; import { XY } from "../type"; export default class StraightArrow extends Draw { _type: string; startPoint: XY; endPoint: XY; arrowLengthScale: number; currentId: string | null; endCb?: (geo?: GeoJSON.Feature | undefined) => void; styleProps: Map; constructor(drawer: any, map: mapboxgl.Map); start(styleProps: Map): Promise; startPick: ({ lngLat: { lng, lat } }: mapboxgl.MapMouseEvent) => void; moveingPoint: ({ lngLat: { lng, lat } }: mapboxgl.MapMouseEvent) => void; endPick: () => void; drawEvent(): void; calculate(): void; off(): void; } //# sourceMappingURL=DrawStraightArrow.d.ts.map