/** * @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/cleanupstreamingartifacts */ import { type HTMLStreamer } from "./htmlstreamer.js"; /** * Removes streaming artifacts left by {@link HTMLStreamer}: animation `` wrappers and `data-id` attributes. */ export declare function cleanUpStreamingArtifacts(htmlStreamer: HTMLStreamer, targetElement: HTMLElement): void;