import { Extension } from '../../externals.js'; export interface UmbTiptapTextIndentOptions { minLevel: number; maxLevel: number; types: Array; } export declare const TextIndent: Extension; declare module '@tiptap/core' { interface Commands { textIndent: { textIndent: () => ReturnType; textOutdent: () => ReturnType; }; } }