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>; export declare const RADIAL_AXIS_ARC_LINE_DEFAULT_PROPS: { stroke: string; };