import type { ReviewCommandArgs } from '../types/review-command-args.type.js'; /** * @purpose Normalize review command CLI arguments into a single contract. * @param argv process.argv array. * @returns ReviewCommandArgs. * @consumer review-verify.cmd, review-issues.cmd */ export declare function parseReviewCommandArgs(argv: string[]): ReviewCommandArgs;