/** * @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/aireviewcorereviewcompletedview */ import { type Locale } from '@ckeditor/ckeditor5-utils'; import { ListItemView } from '@ckeditor/ckeditor5-ui'; import '../../../theme/aireviewcore/aireviewcore-review-completed.css'; export type AIReviewCoreReviewCompletedViewContents = { headerText: string; emptyResultsText: string; buttonText: string; }; export declare class AIReviewCoreReviewCompletedView extends ListItemView { constructor(locale: Locale, contents: AIReviewCoreReviewCompletedViewContents); } export type AIReviewCoreFinishReviewEvent = { name: 'finishReview'; args: []; };