/**
 * @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
 */
declare const AIReviewCheckResult_base: {
    new (): import("@ckeditor/ckeditor5-utils").Emitter;
    prototype: import("@ckeditor/ckeditor5-utils").Emitter;
};
/**
 * Represents a single change of the document that is a result of an review check run.
 */
export declare class AIReviewCheckResult extends /* #__PURE__ */ AIReviewCheckResult_base {
    /**
     * The id of the change.
     */
    readonly id: string;
    /**
     * The content of the change.
     */
    readonly contentNew: string;
    /**
     * The initial content of the change.
     */
    readonly contentInitial: string;
    /**
     * The document version for which this result was created.
     */
    readonly documentVersion: number;
    /**
     * Creates a new instance of the AIReviewCheckResult.
     */
    constructor({ id, contentNew, contentInitial, documentVersion }: {
        id: string;
        contentNew: string;
        contentInitial: string;
        documentVersion: number;
    });
}
export {};
