import React from 'react'; import { Line as LineType } from 'd3-shape'; import { AddSVGProps, LinePathConfig } from '../types'; export declare type LinePathProps = { /** Array of data for which to generate a line shape. */ data?: Datum[]; /** React RefObject passed to the path element. */ innerRef?: React.Ref; /** Override render function which is passed the configured path generator as input. */ children?: (args: { path: LineType; }) => React.ReactNode; /** Fill color of the path element. */ fill?: string; /** className applied to path element. */ className?: string; } & LinePathConfig; export default function LinePath({ children, data, x, y, fill, className, curve, innerRef, defined, ...restProps }: AddSVGProps, SVGPathElement>): JSX.Element; //# sourceMappingURL=LinePath.d.ts.map