/** * Extract words from a string * trims and filters out empty strings and punctuation * * splits on whitespace, underscores, hyphens, periods, commas, semicolons, colons and camel case */ declare function extractWords(value: string): Array; export { extractWords, };