export function enumeratePprChanges(state: import('prosemirror-state').EditorState | { doc?: import('prosemirror-model').Node; } | null | undefined): Array; export type PprChange = { /** * Logical (and public) change id. */ id: string; /** * Block node start (absolute PM position). */ from: number; /** * Block node end (`from + node.nodeSize`). */ to: number; author: string; authorEmail: string; authorImage: string; date: string; /** * Pre-change `paragraphProperties` (used to reject). */ formerProperties: Record; subtype: "paragraph-format"; }; //# sourceMappingURL=pprChanges.d.ts.map