import { EditorState, Transaction } from '../../prosemirror';
export interface Command {
    (state: EditorState<any>, dispatch?: (tr: Transaction) => void): boolean;
}
declare var _default: {
    createTable: () => Command;
    goToNextCell: (direction: number) => Command;
    cut: () => Command;
    copy: () => Command;
    paste: () => Command;
    moveCursorBackward: () => Command;
    emptyCells: () => Command;
};
export default _default;
