import { type Gaddag } from '@kamilmielnik/gaddag'; import { type Board, type Config, type ResultJson, type Tile } from '@scrabble-solver/types'; export declare const solve: (gaddag: Gaddag, config: Config, board: Board, tiles: Tile[]) => ResultJson[];