import { Extension } from '@tiptap/core'; export interface TextIndentOptions { types: string[]; indentUnit: string; defaultIndentLevel: number; } declare module '@tiptap/core' { interface Commands { textIndent: { /** * Increase indentation */ indent: () => ReturnType; /** * Decrease indentation */ outdent: () => ReturnType; }; } } export declare const TextIndent: Extension; //# sourceMappingURL=TextIndent.d.ts.map