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