import { SimulcastLayers } from './simulcast-layers'; export declare type HMSRoleName = string; export declare type HMSPermissionType = 'read' | 'write' | 'admin'; export interface HMSRole { name: string; publishParams: PublishParams; subscribeParams: { subscribeToRoles: string[]; maxSubsBitRate: number; }; permissions: { endRoom: boolean; removeOthers: boolean; unmute: boolean; mute: boolean; changeRole: boolean; hlsStreaming: boolean; rtmpStreaming: boolean; browserRecording: boolean; pollRead: boolean; pollWrite: boolean; whiteboard?: Array; }; priority: number; } export interface PublishParams { audio: { bitRate: number; codec: string; }; video: { bitRate: number; codec: string; frameRate: number; width: number; height: number; }; screen: { bitRate: number; codec: string; frameRate: number; width: number; height: number; }; allowed: string[]; simulcast?: { video: SimulcastLayers; screen: SimulcastLayers; }; }