import React from 'react'; import type { BasePlotProps, Style, Theme } from '../types'; export type RadarDataItem = { name: string; value: number; [key: string]: string | number; }; export type RadarProps = BasePlotProps & Theme & Style & { width?: number; height?: number; }; declare const Radar: (props: RadarProps) => React.JSX.Element; export default Radar;