import { Transforms } from "slate"; import { Modify } from "../../types/misc/types"; import { TEditor, Value } from "../editor/TEditor"; import { ENode, TNodeProps } from "../node/TNode"; import { NodeMatchOption } from "../types/NodeMatchOption"; export type SetNodesOptions = Modify[2]>, NodeMatchOption>; /** * Set new properties on the nodes at a location. */ export declare const setNodes: , V extends Value = Value>(editor: TEditor, props: Partial>, options?: SetNodesOptions | undefined) => void; //# sourceMappingURL=setNodes.d.ts.map