import React from 'react'; import { ParticipantListClasses } from './ParticipantProps'; import { StylerType } from '../../types'; interface PropsType { styler?: StylerType; name: string; peerId: string; onUserSettingsClick?: () => void; isHandRaised?: boolean; isPreview: boolean; } export declare const ParticipantInList: React.MemoExoticComponent<({ styler, name, peerId, onUserSettingsClick, isHandRaised, isPreview, }: PropsType & { isPreview: boolean; }) => JSX.Element>; export {};