import type { SlateEditor } from '@udecode/plate-common'; import type { Element } from 'slate'; import { PlaceholderNode } from '../PlaceholderNode'; interface Options { select?: boolean; } export declare function replacePlaceholder(editor: SlateEditor, placeholder: Pick, element: Element, { select }?: Options): void; export {};