import { type Board } from '../Board'; import { type BoardWord } from '../BoardWord'; import { type Direction } from '../Direction'; export declare function getWordThrough(board: Board, x: number, y: number, direction: Direction): BoardWord | undefined;