/** * @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 */ /** * @module ai/aichatshortcuts/ui/aichatshortcutsview */ import { ListView, View } from '@ckeditor/ckeditor5-ui'; import { type Locale } from '@ckeditor/ckeditor5-utils'; import { type AIChatShortcutDefinition } from '../aichatshortcuts.js'; /** * The view that displays the list of shortcuts in the AI Chat feed. */ export declare class AIChatShortcutsView extends View { /** * The list view that displays the shortcuts. */ listView: ListView; /** * @inheritDoc */ constructor(locale: Locale, shortcuts: ReadonlyArray); }