import { ShuttleState } from "../hooks/useShuttleState";
export type MOVE_SELECTION_REDUCER_ACTION = {
  type?: "MOVE_SELECTIONS",
  from?: "source" | "target",
  to?: "source" | "target",
  ...
};
declare export var shuttleSelections: (
  from: any[],
  to: any[],
  selected: Set<number>
) => any[];
declare export var move: (
  state: ShuttleState,
  action?: MOVE_SELECTION_REDUCER_ACTION
) => ShuttleState;
