import { TEditor } from '@udecode/slate-plugins-core'; import { Node, Path } from 'slate'; /** * Get the descendant node referred to by a specific path. * If the path is an empty array, it refers to the root node itself. * If the node is not found, return null. */ export declare const getNode: (editor: TEditor, path: Path) => T | null; //# sourceMappingURL=getNode.d.ts.map