import { CurveFactory } from 'd3-shape'; import { ScaleLinear } from 'd3-scale'; import { RadarCommonProps, RadarSvgProps } from './types'; interface RadarLayerProps> { data: readonly D[]; item: string; colorByKey: Record; fillByKey: Record; radiusScale: ScaleLinear; rotation: number; angleStep: number; curveFactory: CurveFactory; borderWidth: RadarCommonProps['borderWidth']; borderColor: RadarCommonProps['borderColor']; fillOpacity: RadarCommonProps['fillOpacity']; blendMode: RadarCommonProps['blendMode']; onClick?: RadarSvgProps['onClick']; } export declare const RadarLayer: >({ data, item: key, colorByKey, fillByKey, radiusScale, rotation, angleStep, curveFactory, borderWidth, borderColor, fillOpacity, blendMode, }: RadarLayerProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=RadarLayer.d.ts.map