import { default as Color } from 'color'; import { COABalance, NestedAccountReport } from '@zeniai/client-epic-state'; import { CompareMode } from '../../../../common/compareMode'; import { ElementMetadata, ReportTreeKind } from '../../../reportTreeTypes'; export interface Props { accountBalances: (COABalance | null)[]; accountName: string; compareMode: Exclude; height: number; isActualVsForecastOn: boolean; isLastNode: boolean; isLeaf: boolean; isScrolling: boolean; isSticky: boolean; noMarginForAccount: boolean; type: ReportTreeKind; account?: NestedAccountReport; backgroundColor?: Color; classDepth?: number; metadata?: ElementMetadata; } export default function SubAccountTotalRow({ type, backgroundColor, isSticky, height, classDepth: _classDepth, accountName, accountBalances, account: _account, noMarginForAccount: _noMarginForAccount, isActualVsForecastOn, compareMode, isScrolling: _isScrolling, metadata, }: Props): import("react/jsx-runtime").JSX.Element;