/** * Convert a word to title case * @param word - The word to convert to title case * @returns The input word in title case format */ declare function titleCase(word: string): string; export default titleCase; //# sourceMappingURL=titleCase.d.ts.map