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