import { AccountReconciliationByAccount } from '@zeniai/client-epic-state'; import { ReportElementConfig, ReportTreeNode } from '../../../reportTreeTypes'; export declare function mapAccountToTreeNode({ account, numOfBalances, title, isLastNode, index, config, }: { account: AccountReconciliationByAccount; config: ReportElementConfig; index: number; isLastNode: boolean; numOfBalances: number; title: string; sectionId?: "assets" | "liabilities"; }): ReportTreeNode;