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