import { Square, Coords } from '../SmallSquare/small_square';
export declare class Board {
    private rects;
    constructor();
    private initBoard;
    private createCoordsKey;
    private parseCoordKeyToCoords;
    private findCoordinatesForColumn;
    private findCoordinatesForRow;
    private findCoordinatesForBigSquare;
    private mapCoordsKeysToSquares;
    getColumnSquares(column: number): Square[];
    getRowSquares(row: number): Square[];
    getBigSquare(coords: Coords): Square[];
}
