import { TimeUnit } from './TimeUnit'; import { AxisTimeDisplayFormats } from './AxisTimeDisplayFormats'; export declare class AxisTime { id?: number; uuid: string; displayFormats: AxisTimeDisplayFormats[]; /** * If boolean and true and the unit is set to 'week', then the first day of * the week will be Monday. Otherwise, it will be Sunday. If number, the index * of the first day of the week (0 - Sunday, 6 - Saturday) */ isoWeekday: boolean; parser?: string; /** * If defined, dates will be rounded to the start of this unit. See Time Units * below for the allowed units. */ round?: TimeUnit; /** * The format string to use for the tooltip. */ tooltipFormat?: string; /** * If defined, will force the unit to be a certain type. See Time Units * section below for details. */ unit?: TimeUnit; minUnit?: TimeUnit; }