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