import { NodeSpec } from 'prosemirror-model'; import { Inline } from './types/inline-content'; /** * @name taskItem_node */ export interface TaskItemDefinition { type: 'taskItem'; /** * @allowUnsupportedInline true */ content?: Array; attrs: { localId: string; state: 'TODO' | 'DONE'; }; } export declare const taskItem: NodeSpec;