import { WordScope } from '../data/WordScope'; /** * If there are quotes at the edges of the WordScope, this determines if they are part of the word * * ws: WordScope */ declare const scope: (ws: WordScope) => WordScope; /** * Extracts the actual word from the text using scope() */ declare const text: (word: string) => string; export { scope, text }; //# sourceMappingURL=WordSanitiser.d.ts.map