export interface SummaryWithSingleSection { heading: string; upperLabel: string; lowerLabel?: string; } export interface SummaryWithMultipleSection { heading: string; class?: string; sections: Section[]; } export interface Section { label: string; value: string; showTooltip?: boolean; tooltipIconClass?: string; tooltipMessage?: string; }