/**
 * Generate a set of keywords from a source string
 *
 * @param value the source string
 * @param omit a set of words to be omitted from the resulting keywords
 * @returns the resulting set of keywords
 */
export declare const extractKeywordsFromString: (value: string, omit: string[]) => string[];
