export declare const description = "A basic bar chart with customizable data";
interface ChartBarBasicProps {
    data: Array<{
        name: string;
        total: number;
    }>;
    title?: string;
    description?: string;
    className?: string;
    dataKey?: string;
    color?: string;
}
export declare function ChartBarBasic({ data, title, description, className, dataKey, color }: ChartBarBasicProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=chart-bar-basic.d.ts.map