/** * Auto-complete plugin for ProseMirror * * Shows AI-powered inline completion suggestions as ghost text * after the user stops typing. The ghost text appears as a decoration * (not part of the document) and can be accepted with Tab. */ import { Plugin, PluginKey } from "prosemirror-state"; import { AutoCompleteState, AutoCompleteOptions } from "./types"; export declare const autoCompleteKey: PluginKey; /** * Create the auto-complete plugin */ export declare function autoCompletePlugin(apiKey: string, options?: Partial): Plugin; //# sourceMappingURL=plugin.d.ts.map