import type { Root } from "mdast";
import type { Plugin as UnifiedPlugin } from "unified";
/**
 * UnifiedPlugin to replace \<Tabs\> elements from tree.
 *
 * @throws {InvalidTabsFormatError} if \<Tabs\> tag does not have only TabItem children.
 * @throws {InvalidTabItemMissingLabelError} if \<TabItem\> tag does not have a label property.
 * @see {@link https://docusaurus.io/docs/markdown-features/tabs | Docusaurus Details}
 */
declare const remarkReplaceTabs: UnifiedPlugin<Array<void>, Root>;
export default remarkReplaceTabs;
