import { FC } from "react"; interface AreaChartProps { showTooltip?: boolean; showGridLine?: boolean; chartType?: "natural" | "linear"; showXaxis?: boolean; showYaxis?: boolean; dataKey: string; secondaryDataKey?: string; XAxisDataKey?: string; YAxisDataKey?: string; chartData?: unknown[]; } export declare const AreaChart: FC; export {};