/**
* @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 { Plugin } from "@ckeditor/ckeditor5-core";
/**
* The indent UI feature.
*
* This plugin registers the `'indent'` and `'outdent'` buttons.
*
* **Note**: In order for the commands to work, at least one of the compatible features is required. Read more in
* the {@link module:indent/indent~Indent indent feature} API documentation.
*/
export declare class IndentUI extends Plugin {
	/**
	* @inheritDoc
	*/
	static get pluginName(): "IndentUI";
	/**
	* @inheritDoc
	*/
	static override get isOfficialPlugin(): true;
	/**
	* @inheritDoc
	*/
	init(): void;
	/**
	* Defines UI buttons for both toolbar and menu bar.
	*/
	private _defineButton;
	/**
	* Creates a button to use either in toolbar or in menu bar.
	*/
	private _createButton;
}
