import { SquareIndex } from "./square";
interface ICoords {
    toSquareIndex(x: number, y: number): SquareIndex;
    toX(squareIndex: SquareIndex): number;
    toY(squareIndex: SquareIndex): number;
}
export declare const Coords: ICoords;
export {};
