export interface ClosingSummaryRow { label: string; value: string; } /** Builds the "Closing summary" field list shown in the closing-draft detail * sheet. Shared by the parent draft and its sub-closing groups so both surface * the same details. */ export declare function buildClosingDraftSummary(draft: FdoClosingDraft, opts: { idDisplay?: string | null; locationName?: string | null; }): ClosingSummaryRow[];