import { Plugin } from 'prosemirror-state'; /** * Shows placeholder text on the first paragraph while the document is empty. * The text itself is rendered by CSS (`content: attr(data-placeholder)`) so * it never enters the document. */ export declare function placeholderPlugin(getText: () => string): Plugin;