import type { ReviewContextGit } from '../types/review-context-git.type.js'; /** * @purpose Build git context for review launch (branch + origin remote). * @param [branchOverride] Explicitly specified branch from CLI. * @returns ReviewContextGit. * @consumer run-review-command.logic */ export declare function buildReviewContextGit(branchOverride?: string): ReviewContextGit;