import { OpeningInterface } from './openings';
export { Openings, OpeningInterface } from './openings';
import { ChessInstance } from 'chess.js';
export declare class Fen {
    chess: ChessInstance;
    pgn: string;
    constructor(pgn: string);
    getFens(): string[];
    getOpenings(): OpeningInterface[];
    getMoves(group?: boolean): string[];
}
