/** * Capitalize the first letter of a word. * @param word */ export declare function capitalize(word: T extends `${infer U} ${infer V}` ? 'You can capitalize only single word' : T): string;