import type { StrictRemarkPlugin } from "./lib/types/plugin.js";
export type { Options } from "./lib/index.js";
export type { RemarkMaskTextOptions, StrictRemarkPlugin, } from "./lib/types/plugin.js";
/**
 * Add support for masking text content.
 *
 * This plugin provides strict type checking when used in arrays,
 * ensuring that only valid options are accepted.
 *
 * @this
 *   Unified processor.
 * @param
 *   Configuration (optional).
 * @returns
 *   Nothing.
 */
declare const remarkMaskText: StrictRemarkPlugin;
export default remarkMaskText;
