import { BillPayInfo, HistoricEvent } from '@zeniai/client-epic-state'; export interface HistoryContentProps { historicActivities: HistoricEvent[]; billPayInfo?: BillPayInfo; /** * Show time alongside the date for each activity event. Default `false` * preserves the "MMM D" format used by bill-pay and other consumers. */ showTime?: boolean; } export declare const HistoryContent: (activitySectionProps: HistoryContentProps) => import("react/jsx-runtime").JSX.Element;