import { default as Color } from 'color'; import { AgingBalance } from '@zeniai/client-epic-state'; import { ReportTreeKind } from '../../../reportTreeTypes'; export interface Props { height: number; isIndented: boolean; isSticky: boolean; title: string; totalBalances: (AgingBalance | null)[]; type: ReportTreeKind; backgroundColor?: Color; } export default function TotalRow({ type, isSticky, isIndented, height, title, totalBalances, backgroundColor, }: Readonly): import("react/jsx-runtime").JSX.Element;