import { EditorState, Transaction } from '../prosemirror';
/**
 * Function will lift list item following selection to level-1.
 */
export declare function liftFollowingList(state: EditorState<any>, from: number, to: number, rootListDepth: number, tr: Transaction): Transaction;
