import { FC } from "react"; import { SquarePos, Piece } from "../JSChessEngine"; import { ChessBoardConfig } from "./models"; declare type ChessBoardInteractiveLayoutProps = { size?: number; boardConfig: ChessBoardConfig; selectedPos: SquarePos; possibleMoves: SquarePos[]; markedCells: SquarePos[]; holdedFigure?: Piece; grabbingPos: SquarePos; onHasCheck: (cellPos: SquarePos) => boolean; }; export declare const ChessBoardInteractiveLayout: FC; export {};