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