import { PlainTextDocumentOptions } from "./plain-text-document.js"; import { ParagraphOptions } from "./plain-text-paragraph.js"; import { Extension } from "@tiptap/core"; import { HistoryOptions } from "@tiptap/extension-history"; //#region src/extensions/plain-text/plain-text-kit.d.ts /** * The options available to customize the `PlainTextKit` extension. */ type PlainTextKitOptions = { /** * Set options for the `Document` extension, or `false` to disable. */ document: Partial | false; /** * Set options for the `History` extension, or `false` to disable. */ history: Partial | false; /** * Set options for the `Paragraph` extension, or `false` to disable. */ paragraph: Partial | false; /** * Set to `false` to disable the `PasteHTMLTableAsString` extension. */ pasteHTMLTableAsString: false; /** * Set to `false` to disable the `Text` extension. */ text: false; /** * Set to `false` to disable the `Typography` extension. */ typography: false; /** * Set to `false` to disable the `SmartMarkdownTyping` extension. */ smartMarkdownTyping: false; }; /** * The `PlainTextKit` extension is a collection of the minimal required extensions to have a basic * plain-text editor working. This extension is based on the official `StarterKit` extension * implementation, allowing almost every extension to be customized or disabled. */ declare const PlainTextKit: Extension; //#endregion export { PlainTextKit }; //# sourceMappingURL=plain-text-kit.d.ts.map