import * as React from 'react'; import { type RadarChartProps, type RadarDataProviderProps, type RadarChartSlotProps, type RadarChartSlots } from '@mui/x-charts/RadarChart'; import { type RadarChartProPluginSignatures } from "./RadarChartPro.plugins.js"; import { type ChartsToolbarProSlotProps, type ChartsToolbarProSlots } from "../ChartsToolbarPro/Toolbar.types.js"; import { type ChartsSlotPropsPro, type ChartsSlotsPro } from "../internals/material/index.js"; export interface RadarChartProSlots extends Omit, ChartsToolbarProSlots, Partial {} export interface RadarChartProSlotProps extends Omit, ChartsToolbarProSlotProps, Partial {} export interface RadarChartProProps extends Omit, Omit, 'slots' | 'slotProps'> { /** * Overridable component slots. * @default {} */ slots?: RadarChartProSlots; /** * The props used for each component slot. * @default {} */ slotProps?: RadarChartProSlotProps; } /** * Demos: * * - [Radar Chart](https://mui.com/x/react-charts/radar/) * * API: * * - [RadarChart API](https://mui.com/x/api/charts/radar-chart/) */ declare const RadarChartPro: React.ForwardRefExoticComponent>; export { RadarChartPro };