import { Schema } from "@tiptap/pm/model"; //#region src/helpers/schema.d.ts /** * Check if the document schema accepts multiple lines of input. * * @param schema The current editor document schema. * * @returns True if the schema accepts multiple lines of input, false otherwise. */ declare function isMultilineDocument(schema: Schema): boolean; /** * Check if a document schema contains a plain-text document top node. * * @param schema The current editor document schema. * * @returns True if the schema contains a plain-text document, false otherwise. */ declare function isPlainTextDocument(schema: Schema): boolean; /** * Computes a string ID that identifies a given editor schema which can be used for object mapping. * * @param schema The current editor document schema. * * @returns A string ID matching the editor schema. */ //#endregion export { isMultilineDocument, isPlainTextDocument }; //# sourceMappingURL=schema.d.ts.map