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