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