import { type TileJson } from './TileJson'; export interface CellJson { isEmpty: boolean; tile: TileJson | null; x: number; y: number; } export declare const isCellJson: (value: unknown) => value is CellJson;