import { COABalance } from '@zeniai/client-epic-state'; export interface Props { sectionBalances: (COABalance | null)[]; sectionColor: string; sectionHoverColor: string; sectionName: string; elementOpen?: boolean; hideSectionIconGraph?: boolean; percentValues?: number[]; onClick?: () => void; } export default function SectionRow(props: Props): import("react/jsx-runtime").JSX.Element;