import { PptxElement, TextStyle } from 'pptx-viewer-core'; /** Toggle the paragraph list type between the given kind and `'none'`. */ export declare function toggleListTypePatch(el: PptxElement, kind: 'bullet' | 'numbered'): Partial; /** Increase or decrease the paragraph left margin by one indent step. */ export declare function adjustIndentPatch(el: PptxElement, delta: 1 | -1): Partial; /** Set the paragraph alignment. */ export declare function setAlignPatch(el: PptxElement, align: TextStyle['align']): Partial; /** Set the line spacing multiplier (e.g. 1.15 = 115%). */ export declare function setLineSpacingPatch(el: PptxElement, lineSpacing: number): Partial; //# sourceMappingURL=editor-paragraph-mutations.d.ts.map