/** * @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 */ import { AIReviewCheck } from './aireviewcheck.js'; import { type AIReviewCheckBaseDefinition } from '../types.js'; declare const AIReviewCheckList_base: { new (): import("@ckeditor/ckeditor5-utils").Observable; prototype: import("@ckeditor/ckeditor5-utils").Observable; }; /** * Represents the list of review checks that can be performed in the AI Review. */ export declare class AIReviewCheckList extends /* #__PURE__ */ AIReviewCheckList_base { /** * Initializes the list of checks based on the provided definitions. */ setupChecks(checks: Array): void; /** * The list of available review checks. */ get checks(): Array; /** * Returns the check by its ID. */ getCheckById(id: string): AIReviewCheck | undefined; /** * Removes the check by its ID. */ removeCheckById(id: string): void; } export {};