/** * IndentExtension — block-level attribute that applies margin-left for indentation. * * Commands: `indent()`, `outdent()` — act on the active paragraph/heading. */ import { Extension } from '@tiptap/core'; export interface IndentOptions { types: string[]; minLevel: number; maxLevel: number; step: number; } declare module '@tiptap/core' { interface Commands { indent: { indent: () => ReturnType; outdent: () => ReturnType; }; } } export declare const IndentExtension: Extension; //# sourceMappingURL=indent.d.ts.map