/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ import { View, type FocusableView, type ViewCollection } from '@ckeditor/ckeditor5-ui'; import { type PresenceInlineListItemView } from './presenceinlinelistitemview.js'; import { type PresenceCounterView } from './presencecounterview.js'; import { KeystrokeHandler, type Locale } from '@ckeditor/ckeditor5-utils'; export declare class PresenceInlineListView extends View implements FocusableView { /** * The collection of `PresenceInlineListItemView` instances. */ readonly items: ViewCollection; /** * The keystroke handler for the presence inline list view. */ readonly keystrokes: KeystrokeHandler; /** * Indicates whether the element has popup. */ hasPopup: boolean; /** * Indicates whether the presence inline list view is expanded or not. */ isExpanded: boolean; constructor(locale: Locale); /** * @inheritDoc */ focus(): void; /** * @inheritDoc */ render(): void; }