/**
* @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 fullscreen/handlers/decouplededitorhandler
*/
import type { DecoupledEditor } from "@ckeditor/ckeditor5-editor-decoupled";
import { FullscreenAbstractEditorHandler } from "./abstracteditorhandler.js";
/**
* The decoupled editor fullscreen mode handler.
*/
export declare class FullscreenDecoupledEditorHandler extends FullscreenAbstractEditorHandler {
	/**
	* An editor instance.
	*/
	protected override readonly _editor: DecoupledEditor;
	/**
	* @inheritDoc
	*/
	constructor(editor: DecoupledEditor);
	/**
	* A function that moves the editor UI elements to the fullscreen mode.
	*/
	override defaultOnEnter(): HTMLElement;
}
