/** * Capitalizes the first letter of a string * * @example * capitalize("hello") // "Hello" */ export declare function capitalize(str: string): string;