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