import { Ancestor, Editor, Location, NodeEntry } from 'slate'; import { EditorParentOptions } from '../typings/editor'; /** * Returns `undefined` if there is no parent instead of throwing error. */ export declare function getParent(editor: Editor, at: Location, options?: EditorParentOptions): NodeEntry | undefined;