import type { Action, ExtensionAuto } from "../../../core/index.js"; import { type HeadingSpecsOptions } from "./HeadingSpecs/index.js"; import { HeadingAction } from "./const.js"; export { headingNodeName, headingType } from "./HeadingSpecs/index.js"; export { HeadingAction } from "./const.js"; export type HeadingOptions = HeadingSpecsOptions & { h1Key?: string | null; h2Key?: string | null; h3Key?: string | null; h4Key?: string | null; h5Key?: string | null; h6Key?: string | null; }; export declare const Heading: ExtensionAuto; declare global { namespace WysiwygEditor { interface Actions { [HeadingAction.ToH1]: Action; [HeadingAction.ToH2]: Action; [HeadingAction.ToH3]: Action; [HeadingAction.ToH4]: Action; [HeadingAction.ToH5]: Action; [HeadingAction.ToH6]: Action; } } }