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