import type { ParsedPGN, Move } from "pgn-parser";
/**
 * Regenerates a PGN string from a ParsedPGN object
 */
export declare function regeneratePGN(parsedPGN: ParsedPGN, moveColor: Map<Move, "w" | "b">): string;
