import { AdHocPackedMove, JGOFNumericPlayerColor } from "engine/formats";
/**
 * Returns a list of moves such that the board state would be equivalent to `board`.
 * @param board The desired board state.
 */
export declare function movesFromBoardState(board: JGOFNumericPlayerColor[][]): AdHocPackedMove[];
