/// import DyteClient from '@dytesdk/web-core'; import { SidebarSection, States } from '../types/props'; import { IconPack } from '../lib/icons'; import { DyteI18n } from '../lib/lang'; import { UIConfig } from '../types/ui-config'; export default function ({ meeting, config, iconPack, size, states, defaultSection, enabledSections, t, }: { meeting: DyteClient; config?: UIConfig; iconPack?: IconPack; size?: 'lg' | 'md' | 'sm' | 'xl'; states?: States; defaultSection?: 'chat' | 'none' | 'participants' | 'plugins' | 'polls'; enabledSections?: SidebarSection[]; t?: DyteI18n; }): JSX.Element;