export type HistoryReportView = "simple" | "advanced"; export declare function parseHistoryReportView(value: string): HistoryReportView; /** UK-style date/time: DD/MM/YYYY HH:mm (UTC, from ISO timestamps). */ export declare function formatUkDateTime(iso: string | null | undefined): string;