export declare const description = "A horizontal bar chart with customizable data";
interface ChartBarHorizontalProps {
    data: Array<{
        [key: string]: string | number;
    }>;
    title?: string;
    description?: string;
    className?: string;
    dataKey?: string;
    color?: string;
    height?: string;
    aspectRatio?: string;
}
export declare function ChartBarHorizontal({ data, title, description, className, dataKey, color, // ✅ THEMED: Use project's primary green color
height, aspectRatio }: ChartBarHorizontalProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=chart-bar-horizontal.d.ts.map