/// import DyteClient from '@dytesdk/web-core'; import { UIConfig } from '../types/ui-config'; import { Peer } from '../types/dyte-client'; import { IconPack } from '../lib/icons'; import { DyteI18n } from '../lib/lang'; import { States } from '../types/props'; declare function DyteSpotlightGrid({ aspectRatio, config, gap, iconPack, meeting, participants, pinnedParticipants, size, states, t, }: { aspectRatio?: string; config?: UIConfig; gap?: number; iconPack?: IconPack; meeting: DyteClient; participants: Peer[]; pinnedParticipants: Peer[]; size?: 'lg' | 'md' | 'sm' | 'xl'; states?: States; t?: DyteI18n; }): JSX.Element; declare namespace DyteSpotlightGrid { var defaultProps: { height: number; }; } export default DyteSpotlightGrid;