/**
 * UPPERCASE first char of each word.
 */
declare function properCase(str: any): any;
export default properCase;
