/** * Capitalize the first word of a string. */ declare function capitalizeFirstWord(str: string): string; export { capitalizeFirstWord };