import type { AnnotationMarkDefinition } from '../marks/annotation'; import type { NodeSpec } from '@atlaskit/editor-prosemirror/model'; /** * @name status_node */ export interface StatusDefinition { attrs: { color: 'neutral' | 'purple' | 'blue' | 'red' | 'yellow' | 'green'; localId?: string; /** * Supported values are bold and subtle */ style?: string; /** // eslint-disable-next-line eslint-plugin-jsdoc/check-tag-names * @minLength 1 */ text: string; }; /** // eslint-disable-next-line eslint-plugin-jsdoc/check-tag-names * @stage 0 */ marks?: Array; type: 'status'; } export declare const status: NodeSpec;