import { COABalance, COABalancesSlice, CalculatedSection, Section, SectionAccountsViewReport, SectionClassesViewReportV2 } from '@zeniai/client-epic-state'; import { COABalanceWithKey, ChartValueType } from './chartTypes'; export declare const balancesSliceToCOABalancesWithKey: (id: string, type: ChartValueType, balancesSlice: COABalancesSlice) => COABalanceWithKey[]; export declare const sectionToCOABalancesWithID: (sectionId: string, type: ChartValueType, section: Section | SectionAccountsViewReport | SectionClassesViewReportV2) => COABalanceWithKey[]; export declare const calculatedSectionToCOABalancesWithKey: (sectionId: string, type: ChartValueType, section: CalculatedSection) => COABalanceWithKey[]; export declare const balancesToCOABalancesWithKey: (id: string, type: ChartValueType, balances: COABalance[]) => COABalanceWithKey[];