import { type Trie } from '@kamilmielnik/trie'; import { Locale } from '@scrabble-solver/types'; export declare class Dictionaries { private readonly cache; private readonly downloadDictionaryProxies; constructor(); get(locale: Locale): Promise; remove(): void; update(force?: boolean): Promise; private getLocalesToUpdate; private updateDictionary; }