import { Node as ProseMirrorNode } from '@sse-editor/pm/model'; import { Transaction } from '@sse-editor/pm/state'; import { Transform } from '@sse-editor/pm/transform'; /** * Returns a new `Transform` based on all steps of the passed transactions. */ export declare function combineTransactionSteps(oldDoc: ProseMirrorNode, transactions: Transaction[]): Transform;