export declare const description = "A bar chart with negative values";
interface ChartBarNegativeProps {
    data: Array<{
        month: string;
        visitors: number;
    }>;
    title?: string;
    description?: string;
    className?: string;
    dataKey?: string;
    positiveColor?: string;
    negativeColor?: string;
    height?: number;
}
export declare function ChartBarNegative({ data, title, description, className, dataKey, positiveColor, negativeColor, height }: ChartBarNegativeProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=chart-bar-negative.d.ts.map