import { Extension } from '@tiptap/core'; import { BlockquoteOptions } from '@tiptap/extension-blockquote'; import { DropcursorOptions } from '@tiptap/extension-dropcursor'; import { HardBreakOptions } from '@tiptap/extension-hard-break'; import { HorizontalRuleOptions } from '@tiptap/extension-horizontal-rule'; import type { BulletListOptions, OrderedListOptions, ListItemOptions, TaskItemOptions, TaskListOptions } from './ListExtension'; import type { HeadingOptions, ParagraphOptions } from './HeadingParagraphExtension'; import type { HistoryOptions } from './HistoryExtension'; import type { CodeBlockOptions } from './CodeBlockExtension'; import type { TextAlignOptions } from './TextAlignExtension'; import type { BoldOptions, ItalicOptions, StrikeOptions, HighlightOptions, CodeOptions } from './MarksExtension'; import type { TableOptions, TableCellOptions, TableRowOptions, TableHeaderOptions } from './TableExtension'; import type { ImageOptions } from './ImageExtension'; export interface StarterKitOptions { document: false; text: false; gapcursor: false; bold: Partial | false; italic: Partial | false; strike: Partial | false; code: Partial | false; blockquote: Partial | false; bulletList: Partial | false; orderedList: Partial | false; listItem: Partial | false; taskList: Partial; taskItem: Partial; codeBlock: Partial | false; dropcursor: Partial | false; hardBreak: Partial | false; heading: Partial | false; history: Partial | false; horizontalRule: Partial | false; paragraph: Partial | false; textAlign: Partial | false; highlight: Partial | false; table: Partial | false; tableCell: Partial | false; tableRow: Partial | false; tableHeader: Partial | false; image: Partial | false; } export declare const StarterKit: Extension;