import { IndexPath } from './indexPath.js'; import { MutationBaseOptions } from './options.js'; export type MoveOptions = MutationBaseOptions & { paths: IndexPath[]; to: IndexPath; }; export declare function move(node: T, options: MoveOptions): T;