/**
 * Gets a string with uppercase first letter
 * @param str{String} - source string
 * @return {string}
 * @example
 * // How to make first letter of a string uppercase?
 * const str = "hello world";
 * const upperStr = getStringWithCapitalizedFirstLetter(str);
 * console.log(upperStr); // => "Hello world"
 */
export function getStrWithCapitalized(str: string): string;
//# sourceMappingURL=index.d.ts.map