import React from 'react'; import { AvatarConfig } from '../../types/avatars'; import { Profile } from '../../types/profile'; interface ReportDisplayProps { timestamp: number; reportName: string; studyName?: string; cardIcon?: string; subtitle: string; profile?: Profile; summary?: string; data: Array<{ label?: string; value: string; useMarkdown?: boolean; }>; } interface ReportListProps { className?: string; texts: { title: string; subtitle?: string; infoParagraph?: string; emptyList: string; cardActionBtn: string; detailDialog: { title: string; closeBtn: string; }; }; cardBgOverride?: string; reports: Array; avatars: Array; } declare const ReportList: React.FC; export default ReportList;