import React from 'react'; import type { PieceSymbol } from 'chess.js'; import type { BoardConfig } from '../state'; interface PromotionDialogProps { color: 'w' | 'b'; onSelect: (piece: PieceSymbol) => void; onCancel: () => void; config: BoardConfig; } export declare const PromotionDialog: React.FC; export {};