import type { Api } from "@cargo-ai/api"; import { type SetupIssue } from "./status.js"; type OverviewLine = { label: string; value: string; }; export type Overview = { /** One line, for a palette heading: `cargo-cdk 1.0.53 · Acme · 12,480 credits`. */ title: string; issues: SetupIssue[]; lines: OverviewLine[]; next: string; }; export declare function resolveOverview(getApi: () => Api): Promise; /** The non-interactive rendering: the same facts, as plain lines. */ export declare function printOverview(overview: Overview): void; export {}; //# sourceMappingURL=overview.d.ts.map