import type { Inline } from './types/inline-content'; import type { ParagraphDefinition as Paragraph } from './paragraph'; import type { ExtensionDefinition as Extension } from './extension'; import type { NodeSpec } from '@atlaskit/editor-prosemirror/model'; /** * @name taskItem_node */ export interface TaskItemDefinition { attrs: { localId: string; state: 'TODO' | 'DONE'; }; /** // eslint-disable-next-line eslint-plugin-jsdoc/check-tag-names * @allowUnsupportedInline true */ content?: Array; type: 'taskItem'; } /** * @name blockTaskItem_node */ export interface BlockTaskItemDefinition { attrs: { localId: string; state: 'TODO' | 'DONE'; }; /** // eslint-disable-next-line eslint-plugin-jsdoc/check-tag-names * @allowUnsupportedInline true */ content?: Array; type: 'blockTaskItem'; } export declare const taskItem: NodeSpec; export declare const blockTaskItem: NodeSpec;