import type { SafePluginSpec } from '@atlaskit/editor-prosemirror/state'; import type { InputRuleWrapper } from './editor-common'; type Options = { allowInsertTextOnDocument?: boolean; /** * Append text to the checked text on blur. Useful for checks that normally require a trailing * space or similar */ appendTextOnBlur?: string; /** * Run checks on blur of the editor as well as during input */ checkOnBlur?: boolean; isBlockNodeRule?: boolean; }; export declare const createPlugin: (pluginName: string, rules: Array, options?: Options) => SafePluginSpec; export {};