import { TPropertyObject } from 'tscommons-esm-core'; import { DatabaseService } from '../services/database.service.mjs'; import { IParserConfig } from '../interfaces/iparser-config.mjs'; import { IRequestOutcome } from '../interfaces/irequest-outcome.mjs'; import { DictionaryParser, IDictionaryConfig } from './dictionary.parser.mjs'; export declare class SpellingParser extends DictionaryParser { private url?; constructor(url?: string | undefined, outcome?: IRequestOutcome, config?: TPropertyObject); protected parseMatches(database: DatabaseService, matches: string[], _nonMatches: string[]): Promise; }