/** * Capitalizes the first grapheme of a string. Surrogate-pair safe. * Does not lowercase the rest of the string. * * @param {string} string_ - Input string * @returns {string} String with the first grapheme uppercased * @example * capitalize("hello"); // "Hello" * capitalize("éclair"); // "Éclair" * capitalize(""); // "" */ export declare const capitalize: (string_: string) => string;