import { IKeywords } from './IKeywords'; /** * Parses keywords from a string * * @param {string} input * @returns {Set} of keywords without diacritics in lowercase */ export declare function parseKeywordsFromString(input: string): IKeywords;