import { default as Color } from 'color'; import { COABalance } from '@zeniai/client-epic-state'; import { CompareMode } from '../../../../common/compareMode'; import { ReportTreeKind } from '../../../reportTreeTypes'; export interface Props { compareMode: Exclude; height: number; isLeaf: boolean; isSticky: boolean; title: string; totalBalances: (COABalance | null)[]; treeNodeId: string; type: ReportTreeKind; backgroundColor?: Color; onClick?: (treeNodeId: string) => void; } export default function TotalRow({ type, backgroundColor, isSticky, treeNodeId, height, title, totalBalances, isLeaf, compareMode, onClick, }: Props): import("react/jsx-runtime").JSX.Element;