import { SquareIndex } from "./square";
export declare const BoardNotation: {
    toBoardNotation(squareIndex: SquareIndex): string;
    fromBoardNotation(boardNotation: string): SquareIndex;
};
