import { type Board } from './Board'; import { Cell } from './Cell'; import { type ResultJson } from './ResultJson'; export declare function readCells(json: ResultJson, board: Board): Cell[]; export declare function readCollisions(cells: Cell[], board: Board, isHorizontal: boolean): Cell[][];