import { ReOrder, Move, TransferItem, TransferKeyType, DragSource } from "./iTransfer"; /** * a little function to help us with reordering the result * @param {*} list * @param {*} targetKeys * @param {*} startIndex * @param {*} endIndex */ declare const reorder: (list: TransferItem[], targetKeys: TransferKeyType[], startIndex: number, endIndex: number) => ReOrder; /** * Moves an item from one list to another list. * @param {*} source * @param {*} destination * @param {*} droppableSource * @param {*} droppableDestination * @param {*} targetKeys */ declare const move: (source: TransferItem[], destination: TransferItem[], droppableSource: DragSource, droppableDestination: DragSource, targetKeys: TransferKeyType[]) => Move; export { reorder, move };