import type { ProgressEntry } from './streaming.preview.js'; export interface FinalBodyState { readonly accumulated: string; readonly progressEntries: readonly ProgressEntry[]; } export declare function computeFinalBody(state: FinalBodyState): string;