/** * Capitalizes the first letter of each word in the input text. * The function splits the text by spaces, capitalizes the first letter of each word, * and ensures the rest of each word is in lowercase. * * @param {string} text - The input string to capitalize. * @returns {string} The input string with each word capitalized. */ export declare function capitalize(text: string): string; export declare function removeBeginningSlash(str: string): string; export declare function removeEndingSlash(str: string): string; export declare function removeBothSlashes(str: string): string;