import type { GlobalRowIndexToTaskMap, RowIndexToTaskMap, TaskToRowIndexMap, TaskOrEmpty } from "../types/public-types";
/**
 * @param sortedTasks Sorted list of visible tasks
 * @param comparisonLevels Number of comparison levels
 */
export declare const getMapTaskToRowIndex: (visibleTasks: readonly TaskOrEmpty[], comparisonLevels: number) => [
    TaskToRowIndexMap,
    RowIndexToTaskMap,
    GlobalRowIndexToTaskMap
];
