import { DOMOutputSpec } from 'prosemirror-model'; import { Types } from '../libs'; import { FORMAT_TYPE } from './const'; declare const createCardDOM: () => HTMLElement; declare const createInlineCardDOM: () => HTMLElement; declare const createWrapperDOM: (tagName: string, attrs?: Types.StringMap, hasContent?: boolean) => DOMOutputSpec; declare const createMaskDOM: () => HTMLElement; declare const createTemplDOM: () => HTMLElement; declare const getSchemaType: (Ctor: Types.Ctor) => FORMAT_TYPE; declare const isCardSchema: (Ctor: Types.Ctor) => boolean; declare const isInlineSchema: (Ctor: Types.StringMap | Types.Ctor) => boolean; declare const isBlockSchema: (Ctor: Types.Ctor) => boolean; export { createCardDOM, createInlineCardDOM, createMaskDOM, createTemplDOM, createWrapperDOM, getSchemaType, isBlockSchema, isCardSchema, isInlineSchema, };