import React from 'react'; import { AvatarConfig } from '../../types/avatars'; import { Profile } from '../../types/profile'; interface ReportDetailDialogProps { open: boolean; dialogTexts: { title: string; closeBtn: string; }; reportInfos: { reportName: string; studyName?: string; cardIcon?: string; subtitle: string; profile?: Profile; data: Array<{ label?: string; value: string; useMarkdown?: boolean; }>; }; avatars: Array; onClose: () => void; dialogPaddingXClass?: string; dialogHeaderPaddingYClass?: string; dialogBodyPaddingYClass?: string; } declare const ReportDetailDialog: React.FC; export default ReportDetailDialog;