/// import { Peer } from '../types/dyte-client'; import { IconPack } from '../lib/icons'; import { DyteParticipant } from '@dytesdk/web-core'; export default function ({ participant, iconPack, isScreenshare, size, variant, }: { participant: Peer | DyteParticipant; iconPack?: IconPack; isScreenshare?: boolean; size?: 'lg' | 'md' | 'sm' | 'xl'; variant?: 'bar'; }): JSX.Element;