import type { ChangeAction, TaskOrEmpty, TaskToGlobalIndexMap } from "../types/public-types";
export declare const getTaskIndex: (task: TaskOrEmpty, mapTaskToGlobalIndex: TaskToGlobalIndexMap) => {
    task: TaskOrEmpty;
    index: number;
};
export declare const getTaskIndexes: (changeAction: ChangeAction, mapTaskToGlobalIndex: TaskToGlobalIndexMap) => {
    task: TaskOrEmpty;
    index: number;
}[];
