import type { ContentEditorInlineMathDelimiter } from '@admin/utils/editor/content-editor-inline-math-delimiter' import type { ContentEditorMathKind } from '@admin/utils/editor/content-editor-math-kind' import type { Node as PMNode } from '@tiptap/pm/model' export interface ContentEditorSelectedMath { delimiter?: ContentEditorInlineMathDelimiter kind: ContentEditorMathKind node: PMNode pos: number raw: string value: string }