import type { Node, Schema } from 'prosemirror-model'; import type { EditorState } from 'prosemirror-state'; import { type ListNode } from "./ListsSpecs/index.js"; export { liType, blType, olType } from "./ListsSpecs/index.js"; export declare const findAnyParentList: (schema: Schema) => (selection: import("prosemirror-state").Selection) => import("node_modules/prosemirror-utils/dist/types").FindResult; export declare const isIntoListOfType: (nodeName: ListNode) => (state: EditorState) => boolean; export declare const isListNode: ({ type }: Node) => boolean; export declare const isListItemNode: (node: Node) => boolean; export declare const isListOrItemNode: (node: Node) => boolean;