/**
* @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 template/templateui
*/
import { Plugin } from "@ckeditor/ckeditor5-core";
import "../theme/template.css";
/**
* The UI plugin of the template feature.
*
* It registers the `'insertTemplate'` UI dropdown in the editor's {@link module:ui/componentfactory~ComponentFactory component factory}
* that displays a list of templates and allows to insert them into the editor content.
*/
export declare class TemplateUI extends Plugin {
	/**
	* @inheritDoc
	*/
	static get pluginName(): "TemplateUI";
	/**
	* @inheritDoc
	*/
	static override get isOfficialPlugin(): true;
	/**
	* @inheritDoc
	*/
	static override get isPremiumPlugin(): true;
	/**
	* @inheritDoc
	*/
	init(): void;
	/**
	* @inheritDoc
	*/
	afterInit(): void;
}
