/**
* Convert a stringto a title, capitalizing each word, except for the small words
*
* @param input - the stringto make title case
* @returns the stringin title case
* @groupString
* @category Case Conversion
*/
export declarefunction toTitleCase(input: string): string;