import { SCUserType } from '@selfcommunity/types';
export interface ParticipantTileAvatarProps {
    className?: string;
    /**
     * User Object
     * @default null
     */
    user?: SCUserType;
    /**
     * User Object
     * @default null
     */
    participant?: any;
}
export default function ParticipantTileAvatar(inProps: ParticipantTileAvatarProps): JSX.Element;
