import { type ChessInstance } from 'chess.js'; import { GameDelta } from './types'; export declare const possibleMovesToDests: (game: ChessInstance) => import("chessground/types").Dests; export declare const toColor: (game: ChessInstance) => "white" | "black"; export declare const createDelta: (chess: ChessInstance, comment?: string | undefined) => GameDelta;