import React from "react";
import { Task } from "../../types/public-types";
export declare type GridBodyProps = {
    tasks: Task[];
    dates: Date[];
    svgWidth: number;
    rowHeight: number;
    columnWidth: number;
    todayColumnWidth: number;
    todayColor: string;
    weekendColor: string;
    rtl: boolean;
    hideTicks: boolean;
    hideRowLines: boolean;
    hideWeekends: boolean;
    hideAssignerTicks: boolean;
};
export declare const GridBody: React.FC<GridBodyProps>;
