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