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