import { SectionAccountsViewReport, SectionWithAccountOnly } from '@zeniai/client-epic-state'; import { default as SectionType } from '../../../../dataSelector/dataSelector'; import { ReportElementConfig, ReportTreeNode } from '../../../reportTreeTypes'; export declare function mapSectionWithAcOnlyToTreeNode({ sectionWithAcOnly, sectionType, numOfBalances, title, isLastNode, config, }: { config: ReportElementConfig; isLastNode: boolean; numOfBalances: number; sectionType: SectionType; sectionWithAcOnly: SectionWithAccountOnly; title: string; }): ReportTreeNode; export declare function mapAccountViewSectionWithSubAccountsOnlyToTreeNode({ sectionWithAcOnly, sectionType, numOfBalances, title, isLastNode, config, }: { config: ReportElementConfig; isLastNode: boolean; numOfBalances: number; sectionType: SectionType; sectionWithAcOnly: SectionAccountsViewReport; title: string; }): ReportTreeNode;