export declare const DOCUMENT_DISTRIBUTE_ALIGN_ATTRIBUTE = "data-office-text-align"; export declare const DOCUMENT_DISTRIBUTE_ALIGN_VALUE = "distribute"; /** * TipTap TextAlign stores alignment in `style="text-align: …"`. Browsers reject * the non-standard `distribute` value and clear it, which TipTap then re-parses * as no alignment. Persist distribute via a data attribute and paint with * valid justify + text-align-last:justify CSS (WPS 分散对齐). */ export declare const DocumentTextAlign: import("@tiptap/core").Extension;