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 UnsetNodesOptions = Modify[2]>, NodeMatchOption>; /** * Unset properties on the nodes at a location. */ export declare const unsetNodes: , V extends Value = Value>(editor: TEditor, props: keyof TNodeProps | (keyof TNodeProps)[], options?: UnsetNodesOptions | undefined) => void; //# sourceMappingURL=unsetNodes.d.ts.map