import { Month } from '@zeniai/client-epic-state'; import { COABalanceWithKey, ChartData, ChartValueKey } from './chartTypes'; /** * Constructs chart data by composing given `balancesWithKeyRecord` * @param orderedKeys order of the chartValueKeys * @param keyOfTimeseriesBalances key of the time series balances. * @param balancesWithKeyRecord record of balances with Key * @returns */ export declare function toChartData(firstMonthOfFY: Month, orderedKeys: ChartValueKey[], keyOfTimeseriesBalances: ChartValueKey, balancesWithKeyRecord: Record, useTotalBalances?: boolean): ChartData | undefined;