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