/** * Capitalizes first letter of the string * @param text - text to be capitalized * @returns capitalized text string */ export declare function capitalize(text: string): string;