import React from 'react'; import { Participant, Room } from 'twilio-video'; declare type selectedParticipantContextType = [Participant | null, (participant: Participant) => void]; export declare const selectedParticipantContext: React.Context; export default function useSelectedParticipant(): readonly [Participant | null, (participant: Participant) => void]; declare type SelectedParticipantProviderProps = { room: Room | null; children: React.ReactNode; }; export declare function SelectedParticipantProvider({ room, children }: SelectedParticipantProviderProps): JSX.Element; export {};