import { ScaleLinear } from 'd3-scale'; import { RadarCommonProps, RadarDataProps, RadarColorMapping } from './types'; interface RadarDotsProps> { data: RadarDataProps['data']; keys: RadarDataProps['keys']; radiusScale: ScaleLinear; getIndex: (d: D) => string; colorByKey: RadarColorMapping; rotation: number; angleStep: number; symbol?: RadarCommonProps['dotSymbol']; size: number; color: RadarCommonProps['dotColor']; borderWidth: number; borderColor: RadarCommonProps['dotBorderColor']; enableLabel: boolean; label: RadarCommonProps['dotLabel']; formatValue: (value: number, context: string) => string; labelYOffset: number; } export declare const RadarDots: >({ data, keys, getIndex, colorByKey, radiusScale, rotation, angleStep, symbol, size, color, borderWidth, borderColor, enableLabel, label, formatValue, labelYOffset, }: RadarDotsProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=RadarDots.d.ts.map