import {ExtractionOptions, GetStopwordsOptions} from "./lib/keyword_extractor";

/**
 * Tools for extracting keywords from a string by removing stopwords.
 */
declare const keyword_extractor: {
  extract: (str: string, options?: ExtractionOptions) => string[];
  getStopwords: (options?: GetStopwordsOptions) => string[];
  supported_language_codes: string[];
};

export default keyword_extractor;
