import type { ChartTheme } from '../themes/types.js'; export interface ForecastChartProps { data: Record[]; x: string; y: string; upper: string; lower: string; forecastStart?: number; width: number; height: number; theme?: ChartTheme; color?: string; margin?: { top: number; right: number; bottom: number; left: number; }; } export declare function ForecastChart({ data, x, y, upper, lower, forecastStart, width, height, theme, color, margin, }: ForecastChartProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=ForecastChart.d.ts.map