import { Group } from "./index"; export declare const transformGroupsToCommonGroups: (groups: readonly Group[], colors: readonly string[], isEmptyColumnsHidden: boolean) => { name: string; columns: ({ total: number; sections: undefined; } | { total: number; sections: { color: string; value: number; }[]; } | undefined)[]; reversedColumns: ({ total: number; sections: undefined; } | { total: number; sections: { color: string; value: number; }[]; } | undefined)[]; }[];