/** * Compatibility with other libraries. * * Convert between different formats used by elephantops and [xiangqiground](https://github.com/lucaferranti/xiangqiground). * * @packageDocumentation */ import { Move, SquareName } from './types.js'; import { Position } from './xiangqi.js'; /** * Computes the legal move destinations in the format used by xiangqiground. */ export declare const xiangqigroundDests: (pos: Position) => Map; /** * Convert a move into the format used by xiangqiground. */ export declare const xiangqigroundMove: (move: Move) => SquareName[];