/** * @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/aireviewcore/ui/aireviewcorepromptinputview */ import { TextareaView } from '@ckeditor/ckeditor5-ui'; import { KeystrokeHandler, type Locale } from '@ckeditor/ckeditor5-utils'; export declare class AIReviewCorePromptInputView extends TextareaView { /** * An instance of the keystroke handler managing user interaction and accessibility. * * @readonly */ keystrokes: KeystrokeHandler; /** * Flag indicating if the input is empty. * @observable */ isEmpty: boolean; constructor(locale: Locale); /** * @inheritDoc */ render(): void; } export type AIChatSendUserMessageEvent = { name: 'sendUserMessage'; args: [query: string]; };