import { SpellingDictionary } from './SpellingDictionary'; /** * Create a dictionary where all words are to be ignored. * Ignored words override forbidden words. * @param wordList - list of words * @param name - name of dictionary * @param source - dictionary source * @returns */ export declare function createIgnoreWordsDictionary(wordList: readonly string[], name: string, source: string): SpellingDictionary; //# sourceMappingURL=IgnoreWordsDictionary.d.ts.map