import type { NodeSpec } from 'prosemirror-model'; import type { PlaceholderOptions } from "../../../../utils/placeholder.js"; import { DeflistNode } from "./const.js"; export type DeflistSchemaOptions = { /** * @deprecated use placeholder option in BehaviorPreset instead. */ deflistTermPlaceholder?: NonNullable['content']; /** * @deprecated use placeholder option in BehaviorPreset instead. */ deflistDescPlaceholder?: NonNullable['content']; }; export declare const getSchemaSpecs: (opts?: DeflistSchemaOptions, placeholder?: PlaceholderOptions) => Record;