import { JGOFMove } from "../formats/JGOF";
/** Returns a sorted move string, this is used in our stone removal logic */
export declare function sortMoves(moves: string, width: number, height: number): string;
export declare function sortMoves(moves: JGOFMove[], width: number, height: number): JGOFMove[];
