import { EditorNodesOptions } from "slate"; import { ENodeMatchOptions } from "../../queries/match"; import { Modify } from "../../types/misc/types"; import { ENode, TNode } from "../node/TNode"; import { TNodeEntry } from "../node/TNodeEntry"; import { TEditor, Value } from "./TEditor"; import { UnhangRangeOptions } from "./unhangRange"; export type GetNodeEntriesOptions = Modify>, ENodeMatchOptions> & UnhangRangeOptions; /** * Iterate through all of the nodes in the Editor. */ export declare const getNodeEntries: , V extends Value = Value>(editor: TEditor, options?: GetNodeEntriesOptions | undefined) => Generator, void, undefined>; //# sourceMappingURL=getNodeEntries.d.ts.map