import type { ResolveConflictsCommandArgs } from '../types/resolve-conflicts-command-args.type.js'; import type { ResolveConflictsContextGit } from '../types/resolve-conflicts-context-git.type.js'; /** * @purpose Build merge context from git for resolve-conflicts prompt generation. * @param args Command launch arguments. * @throws {Error} When the current directory is not a git repository, no active merge, or no conflicts. * @returns ResolveConflictsContextGit. * @consumer resolve-conflicts-command-run.logic */ export declare function buildResolveConflictsContextGit(args: ResolveConflictsCommandArgs): ResolveConflictsContextGit;