import { Editor } from "@tiptap/core"; import { EditorState } from "@tiptap/pm/state"; //#region src/utilities/can-insert-suggestion.d.ts /** * Check if a suggestion can be inserted within the current editor selection. * * @return True if the suggestion can be inserted, false otherwise. */ declare function canInsertSuggestion({ editor, state }: { editor: Editor; state: EditorState; }): boolean; //#endregion export { canInsertSuggestion }; //# sourceMappingURL=can-insert-suggestion.d.ts.map