import { OptionsL33tTable, OptionsDictionary, OptionsGraph, Matcher, TranslationKeys, TimeEstimationValues } from './types'; export declare const checkL33tTable: (l33tTable: OptionsL33tTable) => void; export declare const checkDictionary: (dictionary: OptionsDictionary) => void; export declare const checkGraphs: (graphs: OptionsGraph) => void; export declare const checkUseLevenshteinDistance: (useLevenshteinDistance: any) => void; export declare const checkLevenshteinThreshold: (levenshteinThreshold: any) => void; export declare const checkL33tMaxSubstitutions: (l33tMaxSubstitutions: any) => void; export declare const checkMaxLength: (maxLength: any) => void; export declare const checkMatcher: (name: string, matcher: Matcher) => void; export declare const checkCustomMatchers: (customMatchers: any) => void; export declare const checkCustomTranslations: (translations: TranslationKeys) => boolean; export declare const checkTimeEstimationValues: (timeEstimationValues: TimeEstimationValues) => void;