import React from 'react'; import { RadialLine } from 'd3-shape'; import { LinePathProps } from './LinePath'; import { AddSVGProps, RadialLinePathConfig } from '../types'; export declare type LineRadialProps = Pick, 'className' | 'data' | 'fill' | 'innerRef'> & { /** Override render function which is passed the configured path generator as input. */ children?: (args: { path: RadialLine; }) => React.ReactNode; } & RadialLinePathConfig; export default function LineRadial({ className, angle, radius, defined, curve, data, innerRef, children, fill, ...restProps }: AddSVGProps, SVGPathElement>): JSX.Element; //# sourceMappingURL=LineRadial.d.ts.map