import { Extension } from '@tiptap/core'; export interface IndentOptions { types: string[]; minIndent: number; maxIndent: number; } declare module '@tiptap/core' { interface Commands { indent: { /** * Set the indent attribute */ indent: () => ReturnType; /** * Set the outdent attribute */ outdent: () => ReturnType; }; } } declare const Indent: Extension; export default Indent;