import { ICellData, IMutation, IObjectMatrixPrimitiveType, IRange, Nullable } from '@univerjs/core'; export interface IMoveRangeMutationParams { unitId: string; fromRange: IRange; toRange: IRange; from: { subUnitId: string; value: IObjectMatrixPrimitiveType>; }; to: { subUnitId: string; value: IObjectMatrixPrimitiveType>; }; } export declare const MoveRangeMutation: IMutation;