/**
 * @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 React from 'react';
import type { MultiRootEditor } from 'ckeditor5';
/**
 * A React component that wraps and renders the CKEditor toolbar.
 * It extracts the toolbar DOM element from the provided editor instance
 * and safely appends it to a local `div` container, handling cleanup on unmount.
 */
export declare const EditorToolbarWrapper: React.ForwardRefExoticComponent<Props & React.RefAttributes<unknown>>;
type Props = {
    editor: MultiRootEditor | null;
};
export {};
