/** * The human view of an upgrade assessment. Every fact it shows is read from * the typed `axm.upgrade-assessment/v1` result; the wording is the CLI's. */ import type { VerbosityLevel } from "../../cli-flags/index.js"; import type { Doc } from "../../screen/index.js"; import { type UpgradeAssessmentResult } from "@agentxm/cli-maintenance/self-update/adapters/cli"; export interface UpgradeViewEntry { readonly channel: "result" | "note"; readonly doc: Doc; } export declare const upgradeView: (upgrade: UpgradeAssessmentResult, verbosity: VerbosityLevel) => ReadonlyArray; //# sourceMappingURL=view.d.ts.map