import * as woodyTypes from './types'; /** * @description Convert a fen string (only pieces) to a map of pieces and coordinates * @param fen The fen string * @returns Map of pieces */ export declare function fenToPieces(fen: woodyTypes.FEN): woodyTypes.Pieces; /** * * @param fen The fen string * @returns true if the fen is valid, false otherwise */ export declare function validateFen(fen: woodyTypes.FEN): boolean; //# sourceMappingURL=fen.d.ts.map