/// 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, size, states, variant, iconPack, t, }: { meeting: DyteClient; size?: 'lg' | 'md' | 'sm' | 'xl'; states?: States; variant?: 'button' | 'horizontal'; iconPack?: IconPack; t?: DyteI18n; }): JSX.Element;