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; heading: string; headingBalances: (COABalance | null)[]; height: number; isActualVsForecastOn: boolean; isLastNode: boolean; isLeaf: boolean; isOpen: boolean; isScrolling: boolean; isSticky: boolean; numOfBalances: number; treeNodeId: string; type: ReportTreeKind; backgroundColor?: Color; onClick?: (treeNodeId: string) => void; } export default function HeadingRow({ type, backgroundColor, isSticky, treeNodeId, height, heading, headingBalances, isLeaf, numOfBalances, onClick, }: Props): import("react/jsx-runtime").JSX.Element;