import { NodeSpec } from 'prosemirror-model'; import { ListItemDefinition as ListItemNode } from './list-item'; /** * @name bulletList_node */ export interface BulletListDefinition { type: 'bulletList'; /** * @minItems 1 */ content: Array; attrs?: { className?: string; }; } export declare const bulletList: NodeSpec;