import { IColor, ILegalMoves } from '../../types';
import Board from '../Board/Board';
export declare function kingMoves(board: Board, hasToPlay: IColor): ILegalMoves;
export declare function getKingAndColor(hasToPlay: IColor): 'whiteKing' | 'blackKing';
