import type { NodeType, Schema } from 'prosemirror-model'; import type { EditorState, Command } from 'prosemirror-state'; declare class ListItem { isBulletList: boolean; constructor(isBulletList?: boolean); getType(schema: Schema): NodeType; toggle(): Command; isActive(state: EditorState): boolean; canExecute(state: EditorState): boolean; } export default ListItem;