import React from "react";
import { GanttProps, Task } from "../../types/public-types";
export declare const Gantt: React.FunctionComponent<GanttProps>;
export declare function topologicalOrderingHelper(taskID: string, taskMap: {}, sortedTaskList: string[]): boolean;
export declare function getCriticalPaths(leafTasks: Task[]): any[][];
export declare function computeCriticalPath(taskID: string, taskMap: {}): void;
export declare function uncolorAll(tasks: Task[]): void;
export declare function colorPath(path: Task[], color: string, tasks: Task[]): void;
