import { ChildByLevelMap, RootMapByLevel, TaskOrEmpty } from "../types/public-types";
/**
 * @param tasks List of tasks
 */
export declare const getChildsAndRoots: (tasks: readonly TaskOrEmpty[], checkIsRoot: (task: TaskOrEmpty) => boolean) => [ChildByLevelMap, RootMapByLevel];
