import { type CellJson } from './CellJson'; export type BoardJson = CellJson[][]; export declare const isBoardJson: (value: unknown) => value is BoardJson;