import type { ExtendedRegExpMatchArray, InputRule } from '@tiptap/core'; import type { Node as ProseMirrorNode, NodeType } from '@tiptap/pm/model'; type InputRuleHandler = (config: { type: NodeType; getAttributes?: Record | ((match: ExtendedRegExpMatchArray) => Record) | false | null; joinPredicate?: (match: ExtendedRegExpMatchArray, node: ProseMirrorNode) => boolean; }) => InputRule['handler']; export declare const createListInputRuleHandler: InputRuleHandler; export {}; //# sourceMappingURL=list-input-rule-handler.d.ts.map