/** * Capitalizes the first letter of a string. * * @param text - The string to capitalize * @returns The string with the first letter capitalized * * @example * capitalize('hello') // => 'Hello' * capitalize('world') // => 'World' */ export declare const capitalize: (text: string) => string;