/// import DyteClient from '@dytesdk/web-core'; import { IconPack } from '../lib/icons'; import { DyteI18n } from '../lib/lang'; import { Peer } from '../types/dyte-client'; export default function ParticipantCard({ meeting, participant, iconPack, t, }: { meeting?: DyteClient; participant: Peer; iconPack?: IconPack; t?: DyteI18n; }): JSX.Element;