import type { SafePluginSpec } from '@atlaskit/editor-prosemirror/state'; import type { InputRuleWrapper } from './editor-common'; import type { OnBeforeRegexMatch, OnInputEvent } from './types'; type Options = { allowInsertTextOnDocument?: boolean; appendTextOnBlur?: string; checkOnBlur?: boolean; onBeforeRegexMatch?: OnBeforeRegexMatch; onInputEvent?: OnInputEvent; }; export declare function createInputRulePlugin(pluginName: string, rules: InputRuleWrapper[], options?: Options): SafePluginSpec; export {};