import { CurveFactory } from '@antv/vendor/d3-shape';
import { ShapeComponent as SC } from '../../runtime';
export type CurveOptions = {
    curve?: CurveFactory;
    gradient?: boolean | string;
    [key: string]: any;
};
export declare const Curve: SC<CurveOptions>;
