import { AccountGroupReportV2 } from '@zeniai/client-epic-state'; import { SectionType } from '../../../dataSelector/dataSelectorAccountsView'; import { ReportElementConfig, ReportTreeNode } from '../../reportTreeTypes'; export declare function mapAccountGroupSubAccountToTreeNode({ acGroup, sectionType, numOfBalances, title, isLastNode, config, parentNodeIDs, }: { acGroup: AccountGroupReportV2; config: ReportElementConfig; isLastNode: boolean; numOfBalances: number; parentNodeIDs: string[]; sectionType: SectionType; title: string; }): ReportTreeNode;