/**
* Convert a stringto a title, capitalizing each word, except for the small words
*
* @param input the stringto make title case
* @return the stringin title case
*/
export declarefunction toTitleCase(input: string): string;
export default toTitleCase;