import { NodeSpec } from 'prosemirror-model'; import { TaskItemDefinition as TaskItemNode } from './task-item'; export interface TaskListContent extends Array { 0: TaskItemNode; } /** * @name taskList_node */ export interface TaskListDefinition { type: 'taskList'; /** * @minItems 1 * @allowUnsupportedBlock true */ content: TaskListContent; attrs: { localId: string; }; } export declare const taskListSelector: string; export declare const taskList: NodeSpec;