import { FC } from "react"; import "antd/dist/antd.css"; import { PieceType } from "chess.js"; import { PieceColor } from "../../types/PieceColor"; export interface PromotionChoiceProps { showPromotionChoice?: boolean; turnColor?: PieceColor; onPromotion?: (promotionPiece: Exclude) => void; } export declare const PromotionChoice: FC;