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