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