/**
* @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 basic-styles/strikethrough
*/
import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
import { StrikethroughEditing } from "./strikethrough/strikethroughediting.js";
import { StrikethroughUI } from "./strikethrough/strikethroughui.js";
/**
* The strikethrough feature.
*
* For a detailed overview check the {@glink features/basic-styles Basic styles feature} guide
* and the {@glink api/basic-styles package page}.
*
* This is a "glue" plugin which loads the {@link module:basic-styles/strikethrough/strikethroughediting~StrikethroughEditing} and
* {@link module:basic-styles/strikethrough/strikethroughui~StrikethroughUI} plugins.
*/
export declare class Strikethrough extends Plugin {
	/**
	* @inheritDoc
	*/
	static get requires(): PluginDependenciesOf<[StrikethroughEditing, StrikethroughUI]>;
	/**
	* @inheritDoc
	*/
	static get pluginName(): "Strikethrough";
	/**
	* @inheritDoc
	*/
	static override get isOfficialPlugin(): true;
}
