/** * @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/aicore/utils/getsuggestionpartsfromreply */ import { type Editor } from '@ckeditor/ckeditor5-core'; import { Document } from './htmlparser.js'; import { type AIReplyChangeGroup } from '../model/aireply.js'; export declare function getSuggestionPartsFromReply({ editor, changeGroups, documentContextContent, showDiff, trimUnchanged }: { editor: Editor; showDiff: boolean; changeGroups: Array; documentContextContent: Document; trimUnchanged?: boolean; }): Array; export type AISuggestionContentPartDefinition = { type: 'modified' | 'new' | 'removed' | 'context'; index: number; content: Document; hasChanges: boolean; };