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