import React from 'react'; import { Participant } from 'twilio-video'; interface MainParticipantInfoProps { participant: Participant; children: React.ReactNode; } export default function MainParticipantInfo({ participant, children }: MainParticipantInfoProps): JSX.Element; export {};