import { IBoardLayout, TSquarePositionComponent } from '../../components/chess/Board/types';
declare const pieceName2Letter: {
    k: string;
    q: string;
    b: string;
    n: string;
    r: string;
    p: string;
    K: string;
    Q: string;
    B: string;
    N: string;
    R: string;
    P: string;
};
export declare const parse: (fen: string) => [TSquarePositionComponent, TSquarePositionComponent, keyof typeof pieceName2Letter][];
export declare const parseExtended: (fen: string, noFen?: boolean) => IBoardLayout;
export {};
