import { ReportElementConfig, ReportTreeNode } from '../../../reportTreeTypes'; import { FluxSectionViewReport } from './treeNodeMappersTypes'; export declare function mapSectionToTreeNode({ section, numOfBalances, title, isLastNode, config, vendorIndexOffset, }: { config: ReportElementConfig; isLastNode: boolean; numOfBalances: number; section: FluxSectionViewReport; title: string; vendorIndexOffset: number; }): ReportTreeNode;