import { COABalanceTimeFrame, COABalanceType, Month, TimeframeTickWithMetaData } from '@zeniai/client-epic-state'; export interface Props { additionalBalancesTicks: TimeframeTickWithMetaData[]; firstMonthOfFY: Month; timeframe: COABalanceTimeFrame; timeframeTicks: TimeframeTickWithMetaData[]; backgroundColor?: string; optionBackgroundColor?: string; placeHolderLabel?: string; selectedOptionBackgroundColor?: string; additionalBalanceSelectionChanged?: (type: COABalanceType) => void; } export default function TimeframeRow(props: Props): import("react/jsx-runtime").JSX.Element;