import { default as React } from 'react'; import { default as Color } from 'color'; import { COABalance, Currency, FluxAnalysisSectionType, ID } from '@zeniai/client-epic-state'; export interface Props { currency: Currency; hasVendors: boolean; height: number; idsForReview: ID[]; isLastNode: boolean; isLeaf: boolean; isOpen: boolean; isScrolling: boolean; isSticky: boolean; sectionBalances: COABalance[]; sectionId: FluxAnalysisSectionType; sectionName: string; selectedSectionsIds: FluxAnalysisSectionType[]; treeNodeId: string; varianceAmount: number; variancePercentage: number; backgroundColor?: Color; hideSectionIconCircle?: boolean; onSectionCheckboxClick?: (sectionId: FluxAnalysisSectionType, isSelected: boolean) => void; sectionToggled?: (treeNodeId: FluxAnalysisSectionType) => void; } declare const SectionRow: React.NamedExoticComponent; export default SectionRow;