/** * Uppercases the first letter of the given string * * @param {string} input * * @returns {string} * @category Text */ export default function ucfirst(input: string): string;