import { TypoEntry, TyposDef } from './typos'; export declare function createTyposDefFromEntries(entries: Iterable): TyposDef; export declare function sanitizeIntoTypoDef(dirtyDef: TyposDef | Record | unknown): TyposDef | undefined; /** * Used to process entries found in a `cspell.json` file. * @param entries - entries to process * @returns a TyposDef */ export declare function processEntriesToTyposDef(entries: Iterable | TyposDef | Record): TyposDef; /** * Tries to parse an entry. * @param line - any valid TypoEntry. * @returns a valid TypoEntry */ export declare function parseTyposLine(line: TypoEntry): TypoEntry | undefined; export declare function parseTyposFile(content: string): TyposDef; //# sourceMappingURL=typosParser.d.ts.map