import { Plugin, PluginKey } from "prosemirror-state"; import * as am from "@automerge/automerge/slim"; import { SchemaAdapter } from "./schema.js"; import { DocHandle } from "./DocHandle.js"; export declare const syncPluginKey: PluginKey; export declare const syncPlugin: ({ adapter, handle, path, }: { adapter: SchemaAdapter; handle: DocHandle; path: am.Prop[]; }) => Plugin;