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