import { FC } from 'react'; export interface RadialAxisArcLineProps { /** * Stroke color of the arc. */ stroke: ((index: number) => string) | string; /** * Data to render the line. */ data: Array<{ x: number; y: number; }>; /** * Index of the arc. */ index: number; } export declare const RadialAxisArcLine: FC>;