import { ArcPathConfig, AreaPathConfig, LinePathConfig, PiePathConfig, RadialLinePathConfig, StackPathConfig } from '../types'; export declare function arc({ innerRadius, outerRadius, cornerRadius, startAngle, endAngle, padAngle, padRadius, }?: ArcPathConfig): import("d3-shape").Arc; export declare function area({ x, x0, x1, y, y0, y1, defined, curve }?: AreaPathConfig): import("d3-shape").Area; export declare function line({ x, y, defined, curve }?: LinePathConfig): import("d3-shape").Line; export declare function pie({ startAngle, endAngle, padAngle, value, sort, sortValues, }?: PiePathConfig): import("d3-shape").Pie; export declare function radialLine({ angle, radius, defined, curve, }?: RadialLinePathConfig): import("d3-shape").RadialLine; export declare function stack({ keys, value, order, offset }: StackPathConfig): import("d3-shape").Stack; //# sourceMappingURL=D3ShapeFactories.d.ts.map