import { HeaderEntry, MoveHistory } from './pgnTypes';
export declare class PgnGame {
    readonly headers: HeaderEntry[];
    readonly history: MoveHistory[];
    constructor();
    headersMap(): {
        [key: string]: string;
    };
    moves(): MoveHistory[];
}
export default PgnGame;
