import { default as Color } from 'color'; import { Month, TimeframeTick, TrendTimeseries } from '@zeniai/client-epic-state'; export interface TrendChartProps { firstMonthOfFY: Month; graphColor: Color; height: number; timeframe: "month" | "quarter"; trendReport: TrendTimeseries; width: number; maxBarSize?: number; selectedTimePeriod?: TimeframeTick; onTimeframeSelectionChanged: (timeframe: "month" | "quarter", newTimePeriod: TimeframeTick) => void; } export default function TrendChart({ firstMonthOfFY, trendReport, timeframe, selectedTimePeriod, graphColor, width, height, maxBarSize, onTimeframeSelectionChanged, }: TrendChartProps): import("react/jsx-runtime").JSX.Element | null;