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