declare type ToUpperCaseReturn = [string, Error | null]; /** * toUpperCase capitalizes the first letter of all the words in a string */ declare function toUpperCase(input: string): ToUpperCaseReturn; export { toUpperCase };