import { IBoard } from "./board"; interface IForsythEdwardsNotation { writeFEN(board: IBoard): string; loadFEN(fen: string, board: IBoard): void; regExp: RegExp; } export declare const FEN: IForsythEdwardsNotation; export {};