import { Arc } from 'd3-shape'; import { RadarCommonProps, RadarDataProps, RadarSvgProps } from './types'; interface RadarSliceProps> { datum: D; keys: RadarDataProps['keys']; index: string | number; formatValue: (value: number, context: string) => string; colorByKey: Record; startAngle: number; endAngle: number; radius: number; arcGenerator: Arc; tooltip: RadarCommonProps['sliceTooltip']; onClick?: RadarSvgProps['onClick']; } export declare const RadarSlice: >({ datum, keys, index, formatValue, colorByKey, radius, startAngle, endAngle, arcGenerator, tooltip, onClick, }: RadarSliceProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=RadarSlice.d.ts.map