export type MultiBarGraphProps = { data: MultiDataProps[]; colors?: string[]; maxHeight: string; gap?: string; step?: number; total?: number; maxWidth?: string; labelWidth?: string; barWidth?: string; initialLabelType?: string; finalLabelType?: string; }; export type MultiDataProps = { label?: string; title?: string; values?: number[]; }; export type MultiBarProps = MultiDataProps & { size?: string; isSelected?: boolean; graphValue?: number; popUpText?: string; color?: string; }; //# sourceMappingURL=type.d.ts.map