import { type BoardWord } from '../BoardWord'; import { type Cell } from '../Cell'; import { type Direction } from '../Direction'; export declare function toBoardWord(cells: Cell[], direction: Direction): BoardWord;