import type { EditorState, Transaction } from '@tiptap/pm/state'; import type { WorkDocumentChangeIdentity } from './work-document-changes'; interface DocumentParagraphFormattingTrackingOptions { createChange: () => WorkDocumentChangeIdentity; } export declare function trackDocumentParagraphFormattingTransaction(transaction: Transaction, state: EditorState, options: DocumentParagraphFormattingTrackingOptions): boolean; export {};