import { ICommand } from '@univerjs/core';
export interface IMovePivotTableCommandProps {
    pivotTableId: string;
    targetCellInfo: {
        subUnitId: string;
        unitId: string;
        row: number;
        col: number;
    };
    originTargetInfo: {
        subUnitId: string;
        unitId: string;
    };
}
export declare const MovePivotTableCommand: ICommand<IMovePivotTableCommandProps>;
