import React from "react"; import { Distances, ViewMode } from "../../types"; export type GanttTodayProps = { additionalLeftSpace: number; distances: Distances; ganttFullHeight: number; isUnknownDates: boolean; startDate: Date; rtl: boolean; viewMode: ViewMode; showTodayLine?: boolean; showDataDateLine?: boolean; dataDate?: Date | null; todayColor?: string | null; dataDateColor?: string | null; todayLabel?: string; dataDateLabel?: string; }; export declare const GanttToday: React.NamedExoticComponent;