import * as react_jsx_runtime from 'react/jsx-runtime'; interface SparklineProps { data: number[]; width?: number; color?: string; label?: string; } declare function Sparkline({ data, width, color, label }: SparklineProps): react_jsx_runtime.JSX.Element; interface BarChartItem { label: string; value: number; color?: string; } interface BarChartProps { data: BarChartItem[]; direction?: 'horizontal' | 'vertical'; width?: number; height?: number; showValues?: boolean; title?: string; } declare function BarChart({ data, direction, width, height, showValues, title, }: BarChartProps): react_jsx_runtime.JSX.Element; type LineChartDataPoint = number | { label?: string; value: number; }; interface LineChartProps { data: LineChartDataPoint[]; width?: number; height?: number; title?: string; color?: string; showAxes?: boolean; } declare function LineChart({ data, width, height, title, color, showAxes, }: LineChartProps): react_jsx_runtime.JSX.Element; interface PieChartItem { label: string; value: number; color?: string; } interface PieChartProps { data: PieChartItem[]; radius?: number; showLegend?: boolean; showPercentages?: boolean; } declare function PieChart({ data, radius, showLegend, showPercentages, }: PieChartProps): react_jsx_runtime.JSX.Element; interface HeatMapProps { data: number[][]; rowLabels?: string[]; colLabels?: string[]; colorScale?: string[]; cellWidth?: number; showValues?: boolean; } declare function HeatMap({ data, rowLabels, colLabels, colorScale, cellWidth, showValues, }: HeatMapProps): react_jsx_runtime.JSX.Element; type GaugeSize = 'sm' | 'md' | 'lg'; interface GaugeProps { value: number; min?: number; max?: number; label?: string; color?: string; size?: GaugeSize; } declare function Gauge({ value, min, max, label, color, size }: GaugeProps): react_jsx_runtime.JSX.Element; export { BarChart, type BarChartItem, type BarChartProps, Gauge, type GaugeProps, type GaugeSize, HeatMap, type HeatMapProps, LineChart, type LineChartDataPoint, type LineChartProps, PieChart, type PieChartItem, type PieChartProps, Sparkline, type SparklineProps };