import type { ChartTheme } from '../themes/types.js'; export interface BoxPlotDatum { label: string; min: number; q1: number; median: number; q3: number; max: number; } export interface BoxPlotChartProps { data: BoxPlotDatum[]; width: number; height: number; theme?: ChartTheme; color?: string; margin?: { top: number; right: number; bottom: number; left: number; }; } export declare function BoxPlotChart({ data, width, height, theme, color, margin, }: BoxPlotChartProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=BoxPlotChart.d.ts.map