import { type BoardWord } from '../BoardWord'; import { type Cell } from '../Cell'; import { type Direction } from '../Direction'; /** * Cells in transposed rows keep their original coordinates, * so the first cell of a run is the word's start in both directions. */ export declare function getWordsInRows(cells: Cell[][], direction: Direction): BoardWord[];