import { type Task, type TaskSource } from "./taskSource.ts"; type TaskMatchKind = "exact" | "prefix" | "none"; export interface TaskResolutionMatches { matches: Task[]; rejections: unknown[]; matchKind: TaskMatchKind; } interface CollectExactTaskMatchesArguments { sources: readonly TaskSource[]; naturalId: string; } export declare function resolveTaskIdMatches(arguments_: CollectExactTaskMatchesArguments): Promise; export {}; //# sourceMappingURL=taskResolution.d.ts.map