import * as React from 'react';
import { PolarChartProps } from '../util/types';
export declare const defaultRadialBarChartProps: {
    readonly layout: "radial";
    readonly startAngle: 0;
    readonly endAngle: 360;
    readonly accessibilityLayer: true;
    readonly stackOffset: "none";
    readonly barCategoryGap: "10%";
    readonly barGap: 4;
    readonly margin: import("../util/types").Margin;
    readonly reverseStackOrder: false;
    readonly syncMethod: "index";
    readonly responsive: false;
    readonly cx: "50%";
    readonly cy: "50%";
    readonly innerRadius: 0;
    readonly outerRadius: "80%";
};
/**
 * @consumes ResponsiveContainerContext
 * @provides PolarViewBoxContext
 * @provides PolarChartContext
 */
export declare const RadialBarChart: React.ForwardRefExoticComponent<PolarChartProps & React.RefAttributes<SVGSVGElement>>;
