import { Cell } from "../JSChessEngine"; import { FC } from "react"; import { ChangeMove, ChessBoardConfig } from "./models"; declare type ChessBoardFiguresLayoutProps = { initialState: Cell[][]; change?: ChangeMove; reversed?: boolean; animated?: boolean; boardConfig: ChessBoardConfig; }; export declare const ChessBoardFiguresLayout: FC; export {};