import * as React from 'react'; export interface RadialBarPlotProps { /** * A CSS class name applied to the root element. */ className?: string; } /** * Demos: * * - [Radial bar demonstration](https://mui.com/x/react-charts/radial-bars/) * * API: * * - [RadialBarPlot API](https://mui.com/x/api/charts/radial-bar-plot/) */ declare function RadialBarPlot(props: RadialBarPlotProps): React.JSX.Element; declare namespace RadialBarPlot { var propTypes: any; } export { RadialBarPlot };