/** * Iterate through all of the nodes in the editor and return the first match. If * no match is found, return undefined. */ import { TEditor, TNode } from '@udecode/slate-plugins-core'; import { NodeEntry } from 'slate'; import { FindNodeOptions } from './findNode'; /** * Get the first descendant node matching the condition. */ export declare const findDescendant: = TNode>(editor: TEditor, options: FindNodeOptions) => NodeEntry | undefined; //# sourceMappingURL=findDescendant.d.ts.map