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