import { FC } from "react"; import { ChessBoardConfig } from "./models"; import { SquarePos } from "../JSChessEngine"; declare type ChessBoardCellsLayoutProps = { boardConfig: ChessBoardConfig; size?: number; movesTrail?: [SquarePos, SquarePos]; moveHighlight?: [SquarePos, SquarePos]; }; export declare const ChessBoardCellsLayout: FC; export {};