import { FC } from 'react'; import { ChartProps, ChartStyles } from './Chart'; import { Tracker, TrackerValuesContext } from '../../services/TrackTileService'; type DateRangeType = 'past7Days' | 'calendarWeek'; type TrackerHistoryChartProps = { metricId: string; tracker: Tracker; valuesContext: TrackerValuesContext; target: number; unit?: string; stepperPosition?: 'top' | 'bottom'; dateRangeType?: DateRangeType; referenceDate?: Date; chartStyles?: ChartStyles; } & Pick; export declare const TrackerHistoryChart: FC; export {};