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