export declare const description = "An area chart with gradient fill and customizable data";
interface ChartAreaGradientProps {
    data: Array<{
        [key: string]: string | number;
    }>;
    title?: string;
    description?: string;
    className?: string;
    dataKeys?: string[];
    colors?: string[];
    xAxisKey?: string;
    footerText?: string;
    footerSubtext?: string;
}
export declare function ChartAreaGradient({ data, title, description, className, dataKeys, colors, xAxisKey, footerText, footerSubtext }: ChartAreaGradientProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=chart-area-gradient.d.ts.map