import { type ChessInstance } from 'chess.js'; import type { PgnMove, Tags } from '@mliebelt/pgn-parser'; import type { ChessChapter } from './types'; export declare const createChessChapter: (chess: ChessInstance, moves: PgnMove[], tags?: Tags | undefined) => ChessChapter;