import type { ChartTheme } from '../themes/types.js'; export interface PredictionBlockProps { title: string; prediction: string; confidence: number; factors?: Array<{ name: string; impact: number; }>; theme?: ChartTheme; } export declare function PredictionBlock({ title, prediction, confidence, factors, theme, }: PredictionBlockProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=PredictionBlock.d.ts.map