/** * @description Capitalizes the first letter of each word in a string * @param str The string to capitalize */ export declare function nameify(str: string): string;