import { JSX } from 'solid-js'; import { Participant } from 'livekit-client'; import { Property } from 'csstype'; import './styles.module.css'; export interface ParticipantProps { participant: Participant; displayName?: string; width?: Property.Width; height?: Property.Height; className?: string; aspectWidth?: number; aspectHeight?: number; orientation?: 'landscape' | 'portrait'; showOverlay?: boolean; showConnectionQuality?: boolean; speakerClassName?: string; onMouseEnter?: () => void; onMouseLeave?: () => void; onClick?: () => void; } export declare const ParticipantView: (props: ParticipantProps) => JSX.Element;