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