import type { Action, ExtensionAuto } from "../../../core/index.js"; export { boldMarkName, boldType } from "./BoldSpecs/index.js"; declare const bAction = "bold"; export type BoldOptions = { boldKey?: string | null; }; export declare const Bold: ExtensionAuto; declare global { namespace WysiwygEditor { interface Actions { [bAction]: Action; } } }