import { TaskGroup } from"@/types";
/**
* Finds the earliest start date from all tasks
*/export declare functionfindEarliestDate(taskGroups: TaskGroup[]): Date;
/**
* Finds the latest end date from all tasks
*/export declare functionfindLatestDate(taskGroups: TaskGroup[]): Date;