import { type RadialBarProps, type TooltipProps, type LegendProps } from "recharts"; import { type SSRSafeResponsiveContainerProps } from "./ssr-safe-container"; interface RadialBarChartProps extends Omit { data: Array<{ name: string; value: number; fill?: string; }>; showTooltip?: boolean; showLegend?: boolean; innerRadius?: number | string; outerRadius?: number | string; startAngle?: number; endAngle?: number; tooltipProps?: TooltipProps, string | number>; legendProps?: LegendProps; radialBarProps?: Partial; maxValue?: number; showBackground?: boolean; } export declare function RadialBarChart({ data, className, showTooltip, showLegend, innerRadius, outerRadius, startAngle, endAngle, tooltipProps, legendProps, radialBarProps, height, width, aspect, maxValue, showBackground, }: RadialBarChartProps): import("react/jsx-runtime").JSX.Element; export declare namespace RadialBarChart { var displayName: string; } export {}; //# sourceMappingURL=radial-bar-chart.d.ts.map