import { Schema } from 'prosemirror-model'; import type { Transaction } from 'prosemirror-state'; import { Mapping } from 'prosemirror-transform'; import { NewEmptyAttrs } from '../../helpers/attributes'; import { ChangeStep } from '../types'; export declare function processChangeSteps(changes: ChangeStep[], newTr: Transaction, emptyAttrs: NewEmptyAttrs, schema: Schema, deletedNodeMapping: Mapping): [Mapping, number | undefined];