import { Section, SectionAccountsViewReport, SectionClassesViewReportV2, SectionProjectViewReport, SectionWithAccountOnly } from '@zeniai/client-epic-state'; import { ReportElementConfig, ReportTreeNode } from '../../reportTreeTypes'; export declare function mapTotalBalancesToTreeNode({ title, balances, config, numOfBalances, nodeId, }: { balances: Section | SectionWithAccountOnly | SectionClassesViewReportV2 | SectionAccountsViewReport | SectionProjectViewReport; config: ReportElementConfig; numOfBalances: number; title: string; nodeId?: string; }): ReportTreeNode;