import { type Trie } from '@kamilmielnik/trie'; import { type Config, type Pattern, type Tile } from '@scrabble-solver/types'; export declare const fillPattern: (trie: Trie, config: Config, pattern: Pattern, tiles: Tile[]) => Pattern[]; export declare const fillPatternRecursive: ( /** gets mutated when this function is called */ results: Pattern[], trie: Trie, config: Config, pattern: Pattern, word: string, tiles: Tile[]) => void;