@ckeditor/ckeditor5-ai
Version:
AI features for CKEditor 5.
30 lines (29 loc) • 846 B
TypeScript
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module ai/aichat/ui/aichatheaderview
*/
import { type Locale } from 'ckeditor5/src/utils.js';
import { ButtonView, FormHeaderView } from 'ckeditor5/src/ui.js';
export declare class AIChatHeaderView extends FormHeaderView {
/**
* The button to start a new conversation.
*/
readonly conversationStartButton: ButtonView;
/**
* The button to resize the chat view.
*/
readonly resizeButton?: ButtonView;
/**
* Indicates whether the tabs view is maximized.
*
* @observable
*/
isMaximized: boolean;
/**
* @inheritDoc
*/
constructor(locale: Locale, showResizeButton: boolean);
}