import { GanttView, GanttViewDate, GanttViewOptions } from './view'; import { GanttDate } from '../utils/date'; import { GanttDatePoint } from '../class/date-point'; export declare class GanttViewHour extends GanttView { showWeekBackdrop: boolean; showTimeline: boolean; constructor(start: GanttViewDate, end: GanttViewDate, options?: GanttViewOptions); startOf(date: GanttDate): GanttDate; endOf(date: GanttDate): GanttDate; getPrimaryWidth(): number; getItemWidth(start: GanttDate, end: GanttDate): number; getTodayXPoint(): number; getXPointByDate(date: GanttDate): number; getDateByXPoint(x: number): GanttDate; getHourWidth(): number; getBarWidth(start: GanttDate, end: GanttDate): number; getDayOccupancyWidth(): number; getPrimaryDatePoints(): GanttDatePoint[]; getSecondaryDatePoints(): GanttDatePoint[]; }