import { Task } from '../../types/task';
/**
 * @description Returns the minimum start date and maximum end date of the task
 * @param tasks Task array
 * @returns Minimum start date and maximum end date
 */
export declare function getMinAndMaxDate(tasks: Task[]): {
    min: Date;
    max: Date;
};
//# sourceMappingURL=index.d.ts.map