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