import { CalculatedSection } from '@zeniai/client-epic-state'; import { ReportElementConfig, ReportTreeNode } from '../../reportTreeTypes'; export declare function mapCalculatedSectionToTreeNode({ calculatedSection, numOfBalances, title, isLastNode, config, }: { calculatedSection: CalculatedSection; config: ReportElementConfig; isLastNode: boolean; numOfBalances: number; title: string; }): ReportTreeNode;