import type { PluginKey } from '@atlaskit/editor-prosemirror/state'; import type { InputRuleWrapper } from './editor-common'; import type { HandleInputEvent, OnBeforeRegexMatch, OnInputEvent } from './types'; type Options = { allowInsertTextOnDocument: boolean; onBeforeRegexMatch?: OnBeforeRegexMatch; onInputEvent?: OnInputEvent; pluginKey: PluginKey; rules: InputRuleWrapper[]; }; export declare const createInputEventHandler: ({ rules, pluginKey, allowInsertTextOnDocument, onInputEvent, onBeforeRegexMatch, }: Options) => HandleInputEvent; export {};