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; //#endregion export { isMultilineDocument, isPlainTextDocument }; //# sourceMappingURL=schema.d.ts.map