import { TNode } from '@udecode/slate-plugins-core'; import { Location, Path, Point, Range } from 'slate'; import { MatchOptions } from './Editor.types'; export interface WrapOptions extends MatchOptions { at?: Path | Point | Range; mode?: 'highest' | 'lowest' | 'all'; split?: boolean; voids?: boolean; } export interface InsertNodesOptions extends MatchOptions { at?: Path | Point | Range; mode?: 'highest' | 'lowest'; hanging?: boolean; select?: boolean; voids?: boolean; } export interface SetNodesOptions extends MatchOptions { at?: Location; mode?: 'all' | 'highest' | 'lowest'; hanging?: boolean; split?: boolean; voids?: boolean; } //# sourceMappingURL=Transforms.types.d.ts.map