import React from 'react'; import { BoardContext, BoardSetterContext } from './board-context'; import { ChessboardRef } from './board-refs-context'; import { ChessEngineContext } from './chess-engine-context'; declare type BoardContextProviderProps = { fen?: string; children?: React.ReactNode; }; declare const ChessboardContextProvider: React.MemoExoticComponent>>; export { ChessboardContextProvider, ChessEngineContext, BoardContext, BoardSetterContext, };