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