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