/** * Capitalizes the first letter of a single text/word. * Unicode-safe and locale-aware. * * @param text The text to capitalize. * @returns The text with the first letter capitalized. */ export declare const capitalize: (text: string) => string; export { }