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