import { ChartStatus } from "@trackunit/ui-design-tokens"; /** * Re-ordered chart colors to ensure that adjacent colors are visually different. * * @returns {string[]} The reordered chart colors. */ export declare const useChartColor: () => { chartColor: (index: number) => string; chartColorArray: (total: number) => Array; chartStatusColor: (status: ChartStatus) => string; };