import { Transforms } from "slate"; import { Modify } from "../../types/misc/types"; import { TEditor, Value } from "../editor/TEditor"; import { EElementOrText } from "../element/TElement"; import { NodeMatchOption } from "../types/NodeMatchOption"; export type InsertNodesOptions = Modify[2]>, NodeMatchOption>; /** * Insert nodes at a specific location in the Editor. */ export declare const insertNodes: , V extends Value = Value>(editor: TEditor, nodes: N | N[], options?: InsertNodesOptions | undefined) => void; //# sourceMappingURL=insertNodes.d.ts.map