/** * Transforms the first letter to a capital then adds all the rest after it * * @param str - Text to transform * @returns The input `str` as `Str` * * @example * ```ts * capitalizeFirstLetter('hello world') // 'Hello world' * ``` */ declare function capitalizeFirstLetter(str: string): string; export { capitalizeFirstLetter };