/// import DyteClient from '@dytesdk/web-core'; import { UIConfig } from '../types/ui-config'; import { IconPack } from '../lib/icons'; import { DyteI18n } from '../lib/lang'; export default function ({ meeting, config, iconPack, size, t, }: { meeting: DyteClient; config?: UIConfig; iconPack?: IconPack; size?: 'lg' | 'md' | 'sm' | 'xl'; t?: DyteI18n; }): JSX.Element;