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