import React from "react";
import type { DateExtremity, ViewMode } from "../../types/public-types";
export type GridBodyProps = {
    additionalLeftSpace: number;
    columnWidth: number;
    ganttFullHeight: number;
    isUnknownDates: boolean;
    startDate: Date;
    todayColor: string;
    holidayBackgroundColor: string;
    rtl: boolean;
    viewMode: ViewMode;
    startColumnIndex: number;
    endColumnIndex: number;
    checkIsHoliday: (date: Date, dateExtremity: DateExtremity) => boolean;
    getDate: (index: number) => Date;
    minTaskDate: Date;
};
export declare const GridBody: React.NamedExoticComponent<GridBodyProps>;
