/**
 * @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 core/editor/utils/registerandinitializerootconfigattributes
 */
import type { Editor } from '../editor.js';
/**
 * Registers and initializes root attributes from
 * {@link module:core/editor/editorconfig~EditorConfig#roots `config.roots.<rootName>.modelAttributes`}
 *  and {@link module:core/editor/editorconfig~EditorConfig#roots `config.root.modelAttributes`}.
 *
 * @internal
 */
export declare function registerAndInitializeRootConfigAttributes(editor: Editor): void;
