import { Parent, Element } from "hast"; /** * Returns the parent Parent node of the placeholder Text node (aka the `target` node). * The second node returned is the ancestor of the placeholder Text node (aka the `parent` node). */ export declare function findPlaceholderNode(root: Parent, placeholder: string): [Element | undefined, Parent | undefined];