import { DyteI18n, IconPack } from '../../exports'; import { ChatChannel } from '../../types/props'; import { DyteBasicParticipant } from '@dytesdk/web-core'; export declare class DyteChannelDetails { /** Channel object */ channel: ChatChannel; /** Language */ t: DyteI18n; /** Icon pack */ iconPack: IconPack; /** List of channel members */ members: DyteBasicParticipant[]; private renderMembers; render(): any; }