import { NestedAccountReport } from '@zeniai/client-epic-state'; import { ReportElementConfig, ReportTreeNode } from '../../reportTreeTypes'; import { AncestorElementMetadata } from '../pAndLReports/treeNodeMappers/ancestorElementMetadata'; export declare function mapSubAccountTotalBalancesToTreeNode({ account, numOfBalances, title, config, parentNodeIDs, ancestorMetadata, }: { account: NestedAccountReport; ancestorMetadata: AncestorElementMetadata; config: ReportElementConfig; numOfBalances: number; parentNodeIDs: string[]; title: string; }): ReportTreeNode;