import type { ProgressView } from "../progress/types.ts"; /** How a summary should be announced — `notify`'s own severity vocabulary. */ export type SummaryLevel = "info" | "warning" | "error"; export interface RunSummaryText { readonly message: string; readonly level: SummaryLevel; } /** * Build the summary a finished run is announced with (§7.6). * * Unstyled by construction: `notify` takes a string, so there is no theme to apply and no width to * wrap to — the host draws it. That also makes this trivially testable, which the themed card was not. */ export declare function runSummaryText(view: ProgressView, runLabel: string, workflowFilePath?: string): RunSummaryText; //# sourceMappingURL=progress-card.d.ts.map