import React from "react"; import { CalendarTablePropsType, GroupFeildsType, TaskType, TasksStore, TasksType, dayInfoType } from "../definitions"; interface VirtualGroupRowProps { group: GroupFeildsType; i: number; props: CalendarTablePropsType; getTasks: (hash: string) => TasksType; isValidTask: (task: TaskType) => boolean; addTask: (task: TaskType) => void; deleteTask: (hash: string, taskId: string) => void; getTask: (hash: string, taskId: string) => TaskType | undefined; dailyHours: dayInfoType[]; hashScope: "week" | "group" | "day"; tasks: TasksStore; sumHoursByGroupsCount: number; } declare const _default: React.NamedExoticComponent; export default _default;