/**
 * Capitalizes the first character of a given string after trimming whitespace.
 *
 * @param str - The input string to capitalize.
 * @returns The input string with the first character capitalized.
 */
declare const capitalize: (str: string) => string;
export default capitalize;
