/** * @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/aichatshortcutview */ import { ButtonView } from '@ckeditor/ckeditor5-ui'; import { type Locale } from '@ckeditor/ckeditor5-utils'; import { type AIChatShortcutDefinition } from '../aichatshortcuts.js'; /** * The view that displays a single shortcut in the AI Chat feed. */ export declare class AIChatShortcutView extends ButtonView { /** * The unique identifier of the shortcut. */ readonly id: string; /** * @inheritDoc */ constructor(locale: Locale, definition: AIChatShortcutDefinition); }