import React from 'react'; import { Threshold } from "../CoreBarChart/CoreBarChart"; import { FormatGroupName, FormatValue } from "../../types"; export declare type Column = number | undefined; export declare type Group = { groupName: string; values: readonly Column[]; }; declare type Props = { groups: readonly Group[]; min?: number; max?: number; colors: readonly string[]; gridConfig?: number; unit?: string; showValues?: boolean; isHorizontal?: boolean; isXAxisLabelsSlanted?: boolean; threshold?: Threshold; formatValueForLabel?: FormatValue; formatValueForTooltip?: FormatValue; formatGroupName?: FormatGroupName; isEmptyColumnsHidden?: boolean; showGrid?: boolean; showGuide?: boolean; showGroupsLabels?: boolean; limitMinimumStepSize?: boolean; }; export declare const BarChart: React.FC; export {};