export type BarData = { group: string; } & { [key: string]: { value: string; customtooltip: string; }; }; export type StackedBarData = { group: string; } & { [key: string]: number; }; export type BarKeyValue = { key: string; value: string; customtooltip: string; }; export interface BarMargin { top: number; right: number; bottom: number; left: number; xAxis: number; } //# sourceMappingURL=bar-chart.types.d.ts.map