export declare function isUpperCase(word: string): boolean; export declare function isLowerCase(word: string): boolean; export declare function isFirstCharacterUpper(word: string): boolean; export declare function isFirstCharacterLower(word: string): boolean; export declare function ucFirst(word: string): string; export declare function lcFirst(word: string): string; export declare function matchCase(example: string, word: string): string; export declare function removeAccents(text: string): string; export declare function removeUnboundAccents(text: string): string; //# sourceMappingURL=text.d.ts.map