/// <reference types="react" />
import { ChessBoardProps as TChessBoardProps } from "react-chessboard";
export interface TBoardConfig {
    fen?: string;
    ChessBoardProps?: TChessBoardProps;
}
interface TProps {
    boardConfig?: TBoardConfig;
}
declare const Board: (props: TProps) => JSX.Element;
export default Board;
