import Curve, { CurveOptionsType } from './Curve'; /** * @classdesc * Quadratic Bezier Curve * @category geometry * @extends Curve * @param {Coordinate[]|Number[][]} coordinates - coordinates of the curve * @example * var curve = new QuadBezierCurve( * [ * [121.47083767181408,31.214448123476995], * [121.4751292062378,31.215475523000404], * [121.47869117980943,31.211916269810335] * ], * { * symbol : { * 'lineWidth' : 5 * } * } * ).addTo(layer); */ declare class QuadBezierCurve extends Curve { static fromJSON(json: any): QuadBezierCurve; } export default QuadBezierCurve; export type QuadBezierCurveOptionsType = CurveOptionsType; //# sourceMappingURL=QuadBezierCurve.d.ts.map