import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state'; import type { MoveOptions } from '../types'; export declare const moveRow: (state: EditorState, originRowIndex: number | number[], targetRowIndex: number, options?: MoveOptions) => (tr: Transaction) => Transaction;