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