/** * Lowercases the first grapheme of a string. Surrogate-pair safe. * * @param {string} string_ - Input string * @returns {string} String with the first grapheme lowercased * @example * uncapitalize("Hello"); // "hello" * uncapitalize("ÉCLAIR"); // "éCLAIR" */ export declare const uncapitalize: (string_: string) => string;