import { Breakpoint } from "../../../components/Media" export type AxisTitleProps = { yAxisTitle?: string xAxisTitle?: string hideAxisTitlesBreakpoint?: Breakpoint formatYAxisLabels?: (value: number | string) => string formatXAxisLabels?: (value: number | string) => string } export type RangeProps = { rangeStart?: Date rangeEnd?: Date yAxisMin?: number yAxisMax?: number }