import { HMSPeer, HMSRoleName } from '@100mslive/hms-video-store'; export interface useParticipantListResult { roles: HMSRoleName[]; participantsByRoles: Record; peerCount: number; isConnected: boolean; } export declare const useParticipantList: () => { roles: string[]; participantsByRoles: Record; peerCount: number; isConnected: boolean | undefined; };