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