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