/**
 * Replaces spaces with underscores, split camelCase text, remove non-word chars, remove accents and convert to lower case.
 */
declare function underscore(str: any): any;
export default underscore;
