import React from 'react';
interface BoardProps {
    expansion: boolean;
}
declare const Board: React.FC<BoardProps>;
export default Board;
