import { type Board, type Cell, type Config, type Pattern } from '@scrabble-solver/types'; export declare const generatePattern:

({ board, cells, config, PatternModel, }: { board: Board; cells: Cell[]; config: Config; PatternModel: new (board: Board, cells: Cell[]) => P; }) => P[];