export declare const description = "A radial bar chart with customizable data";
interface ChartRadialLabelProps {
    data: Array<{
        name: string;
        value: number;
        fill?: string;
    }>;
    title?: string;
    description?: string;
    className?: string;
    height?: number;
    colors?: string[];
}
export declare function ChartRadialLabel({ data, title, description, className, height, colors }: ChartRadialLabelProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=chart-radial-label.d.ts.map