declare global { interface String { /** * Converts the first character of a string to uppercase. * * @example * ```typescript * 'hello'.capitalize(); // => 'Hello' * ``` */ capitalize(this: S): Capitalize; } } export {}; //# sourceMappingURL=capitalize.d.ts.map